## Buttons They can be of different colors and types: ```html ``` ```html Link ``` ### Pseudo buttons Allows for seemingly links to behave as buttons: ```html Link ``` ### Hack it You only have to define a single color base for new colors. The `:hover` and `:active` status are handled as overlays for consistency and simplicity ```html ``` ```css .myCoolButton { background: #85144b; } ``` To create a larger button you only need to make the font inside it larger. The paddings are set in *em* so the whole button stays in great shape: ```html

``` ```css .mainButton { font-size: 1.5em; } .shyButton { font-size: .75em; } ``` To change the color of the pseudo-color on hover: ```html ``` ```css .cool:hover, .cool:active, .cool:focus { background: #cff; } ```