Skip to content

Instantly share code, notes, and snippets.

@Quinten
Last active August 29, 2015 14:04
Show Gist options
  • Save Quinten/64e3b4a34ba1a9451ccd to your computer and use it in GitHub Desktop.
Save Quinten/64e3b4a34ba1a9451ccd to your computer and use it in GitHub Desktop.
play-icon in css
.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