Skip to content

Instantly share code, notes, and snippets.

@darioalbanesi
Created March 25, 2014 12:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darioalbanesi/9760766 to your computer and use it in GitHub Desktop.
Save darioalbanesi/9760766 to your computer and use it in GitHub Desktop.
_Pupo - PlayButton CSS
<div class="play_button">
<div class="play_button_arrow"></div>
</div>
.play_button {
background-color: #2E1614;
padding:10px 0px 10px 25px;
width:40px;
height:40px;
border-radius:5px;
margin: 0 auto;
}
.play_button_arrow {
position:relative;
width: 0px;
height: 0;
border-top: 20px solid transparent;
border-bottom: 20px solid transparent;
border-left: 20px solid white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment