Skip to content

Instantly share code, notes, and snippets.

@justjake
Created July 6, 2012 08:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justjake/3058907 to your computer and use it in GitHub Desktop.
Save justjake/3058907 to your computer and use it in GitHub Desktop.
Bare Minimum CSS
/* 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