Created
October 21, 2012 22:04
-
-
Save iansoper/3928684 to your computer and use it in GitHub Desktop.
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
<menu> | |
<button class="rw"></button> | |
<button class="play"></button> | |
<button class="pause"></button> | |
<button class="stop"></button> | |
<button class="ff"></button> | |
</menu> | |
<menu class="medium"> | |
<button class="rw"></button> | |
<button class="play"></button> | |
<button class="pause"></button> | |
<button class="stop"></button> | |
<button class="ff"></button> | |
</menu> | |
<menu class="small"> | |
<button class="rw"></button> | |
<button class="play"></button> | |
<button class="pause"></button> | |
<button class="stop"></button> | |
<button class="ff"></button> | |
</menu> |
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
@color: rgba(100,100,100,.8); | |
@color-dark: darken(@color, 25%); | |
menu { | |
/* @size sets the relative size of the buttons, define before calling the buttons mixin */ | |
@size: 8em; | |
.buttons; | |
margin: 2em auto; | |
text-align: center; | |
position: relative; | |
} | |
menu.medium { | |
@size: 5em; | |
.buttons; | |
} | |
menu.small { | |
@size: 3em; | |
.buttons; | |
} | |
/* | |
The buttons mixin that defines the buttons styles, the @size must be defined to set the relative size | |
*/ | |
.buttons() { | |
button { | |
position: relative; | |
display: inline-block; | |
padding: .6em; | |
background: linear-gradient(top, #fff, #ccc), #c9c5c9 ; | |
border-radius: 10em; | |
border: 0 solid rgba(208,208,208,1.000); | |
width: @size; | |
height: @size; | |
margin-right: 20px; | |
box-shadow: 0 @size * .06 @size * .07 rgba(0,0,0,.4); | |
} | |
button:hover { | |
background: linear-gradient(top, #f5f5f5, #b9b9b9), #c9c5c9 ; | |
} | |
button:before, button:after { | |
position: absolute; | |
content: " "; | |
} | |
button:active { | |
top: @size * .05; | |
box-shadow: 0 @size * .02 @size * .03 rgba(0,0,0,.4); | |
} | |
/* Play */ | |
.play:before { | |
z-index: 2; | |
top: @size * .22; | |
left: @size * .36; | |
width: 0; | |
height: 0; | |
border: @size * .3 solid transparent; | |
border-left-color: @color; | |
border-left-width: @size * .45; | |
} | |
.play:hover:before { | |
border-left-color: @color-dark; | |
} | |
/* Stop */ | |
.stop:before { | |
top: @size * .28; | |
left: @size * .28; | |
width: @size * .47; | |
height: @size * .47; | |
background: @color; | |
} | |
.stop:hover:before { | |
background: @color-dark; | |
} | |
/* Fast-Forward */ | |
.ff:before, .ff:after { | |
width: 0; | |
height: 0; | |
top: @size * .26; | |
border: @size * .25 solid transparent; | |
border-left-color: @color; | |
border-left-width: @size * .27; | |
} | |
.ff:before { | |
left: @size * .3em; | |
} | |
.ff:after { | |
left: @size * .566em; | |
content: " " | |
} | |
.ff:hover:before, .ff:hover:after { | |
border-left-color: @color-dark; | |
} | |
/* Rewind */ | |
.rw:before, .rw:after { | |
width: 0; | |
height: 0; | |
top: @size * .26; | |
border: @size * .25 solid transparent; | |
border-right-color: @color; | |
border-right-width: @size * .27; | |
} | |
.rw:before { | |
left: @size * .22; | |
} | |
.rw:after { | |
left: @size * -.05; | |
content: " " | |
} | |
.rw:hover:after, .rw:hover:before { | |
border-right-color: @color-dark; | |
} | |
/* Pause */ | |
.pause:before, .pause:after { | |
height: @size * .47; | |
width: @size * .19; | |
left: @size * .29; | |
top: @size * .28; | |
display: block; | |
background-color: @color; | |
} | |
.pause:after { | |
left: @size * .54; | |
} | |
.pause:hover:before, .pause:hover:after { | |
background-color: @color-dark; | |
} | |
} | |
/* | |
Other Styles | |
*/ | |
body { | |
background: #c1c1c1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment