Created
July 6, 2012 08:19
-
-
Save justjake/3058907 to your computer and use it in GitHub Desktop.
Bare Minimum CSS
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
/* search your feelings, you know it to be true */ | |
body { | |
color: #dcdccc; | |
background: #292929; | |
font-family: sans-serif; | |
margin: 1em 5.55%; | |
} | |
/* optional: nice text spacing */ | |
body { line-height: 1.5; } | |
p { | |
margin: 0; | |
margin-bottom: 1.5em; | |
} | |
/* link colors */ | |
a { color: #f0dfaf; } | |
a:hover { color: #fff; } | |
/* if you really need a :visited style... */ | |
a:visited { color: #c3bf9f; } | |
/* horizontal lines */ | |
hr { | |
border: 0; | |
height: 1px; | |
background-color: #60b48a; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment