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
/** | |
* Styling Button Links With CSS3 | |
* Credit: http://www.usabilitypost.com/2012/01/10/pressed-button-state-with-css3/ | |
*/ | |
/* Step 1: the button */ | |
.button-link { | |
padding: 10px 15px; | |
background: #4479BA; | |
color: #FFF; | |
text-decoration: none; |
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
/** | |
* CSS only visual rich section division | |
*/ | |
body { | |
background-color: #264e86; | |
color: #fff; | |
font-size: 2em; | |
} | |
#main { | |
width: 90%; |
NewerOlder