Created
August 13, 2009 03:57
-
-
Save adamstac/166944 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
| @import blueprint/reset.sass | |
| @import compass/utilities.sass | |
| @import rounded_corners.sass | |
| @import colors.sass | |
| // Mixins | |
| =centered | |
| margin-left: auto !important | |
| margin-right: auto !important | |
| display: block | |
| =float(!direction) | |
| display: inline | |
| float = !direction | |
| // Because the reset doesn't do it | |
| ul | |
| li | |
| list-style: none | |
| // Links | |
| a | |
| color: #006ac4 | |
| text-decoration: none | |
| &:hover | |
| color: green | |
| text-decoration: underline | |
| &:focus, | |
| &:active | |
| outline: none | |
| &:visited | |
| color: #004886 | |
| &.link_cancel | |
| color: #FF0000 | |
| &:hover | |
| background: #FF0000 | |
| color: #fff |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment