Last active
August 29, 2015 14:04
-
-
Save Quinten/64e3b4a34ba1a9451ccd to your computer and use it in GitHub Desktop.
play-icon in css
This file contains hidden or 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
.youtube-thumb { | |
height: 100px; | |
line-height: 100px; | |
background: #fff; | |
position: relative; | |
} | |
.youtube-thumb:before { | |
content: " "; | |
display: block; | |
position: absolute; | |
background: #000; | |
width: 40px; | |
height: 40px; | |
opacity: .4; | |
top: 30px; | |
left: 30px; | |
border-radius: 20px; | |
} | |
.youtube-thumb:after { | |
content: " "; | |
display: block; | |
position: absolute; | |
width: 0px; | |
height: 0px; | |
top: 40px; | |
left: 44px; | |
border-bottom: 10px solid transparent; | |
border-top: 10px solid transparent; | |
border-left: 16px solid #fff; | |
} | |
.youtube-thumb img { | |
display: inline; | |
vertical-align: middle; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment