Skip to content

Instantly share code, notes, and snippets.

@waldyrious
Last active December 16, 2015 03:39
Show Gist options
  • Save waldyrious/5371403 to your computer and use it in GitHub Desktop.
Save waldyrious/5371403 to your computer and use it in GitHub Desktop.
Youtube play button in html5
<!-- Demo here: http://jsfiddle.net/5qqgW/
-- Image version here: http://www.iconfinder.com/icondetails/87936/128/youtube_icon
-->
<style>
.play {
background-color: rgba(0,0,0,0.75);
color: white;
font-size: 40px;
border-radius: 15px/40px;
height: 50px;
width: 25px;
padding: 10px 45px;
}
.play:hover{
background-color: #E14D42;
}
</style>
<div class="play">▶</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment