Created
May 13, 2016 16:22
-
-
Save cedced19/5797ab15d6c26ee1925c4470e7408594 to your computer and use it in GitHub Desktop.
Command music player
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
/* | |
* Play and pause button thanks to Icono | |
*/ | |
[class*="icono-"] { | |
display: inline-block; | |
vertical-align: middle; | |
position: relative; | |
font-style: normal; | |
color: #333; | |
text-align: left; | |
text-indent: -9999px; | |
direction: ltr; | |
} | |
[class*="icono-"]:before, | |
[class*="icono-"]:after { | |
content: ''; | |
pointer-events: none; | |
} | |
[class*="icono-"][class*="Circle"] { | |
border-radius: 50%; | |
width: 30px; | |
height: 30px; | |
margin: 2px; | |
} | |
[class*="icono-"][class*="Square"] { | |
border-radius: 4px; | |
width: 30px; | |
height: 30px; | |
margin: 2px; | |
} | |
[class*="icono-"], | |
[class*="icono-"] * { | |
box-sizing: border-box; | |
} | |
.icono-play { | |
width: 0; | |
height: 0; | |
border-width: 10px 0 10px 16px; | |
border-style: solid; | |
border-top-color: transparent; | |
border-bottom-color: transparent; | |
margin: 7px 9px; | |
} | |
.icono-pause { | |
width: 6px; | |
height: 20px; | |
margin: 7px 20px 7px 8px; | |
box-shadow: inset 0 0 0 32px, 12px 0 0 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment