Created
February 15, 2012 18:14
-
-
Save wouterj/1837874 to your computer and use it in GitHub Desktop.
Untitled
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
.styled-button | |
{ | |
background-color: buttonface; | |
border: 2px outset #aaa; | |
border-radius: 4px; | |
background-image: linear-gradient( | |
top, | |
#efefef 50%, | |
#bbb 50% | |
); | |
} | |
.styled-button:hover | |
{ | |
background-image: linear-gradient( | |
top, | |
#eee 50%, | |
#aaa 50% | |
); | |
} | |
.styled-button:active | |
{ | |
background-image: linear-gradient( | |
top, | |
#bbb 50%, | |
#efefef 50% | |
); | |
} |
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
<button class="styled-button">Some button</button> |
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
{"view":"split","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment