Last active
December 16, 2015 03:39
-
-
Save waldyrious/5371403 to your computer and use it in GitHub Desktop.
Youtube play button in html5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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