minor css cleanup
[iankelling.org] / css / common.scss
1 // a few minor things are in main.css and gitweb.css
2
3 @import "open-sans";
4
5 $comment-background-color: #ebeae4;
6 $comment-br-color: #c4c3bc; // a darkish color, black is too striking
7 $comment-date-color: #555; // a bit lighter for less emphasis
8 $content-color: #f6f6f0; // from gitweb.
9 $inline-code-background-color: #fff;
10 $link-color: #0645ad;
11 $link-visited-color: #0b0080;
12 $main-column-max-width: 700px;
13 $page-header-link-color: #333;
14 $site-background-color: #d9d8d1; // from gitweb.
15 $text-input-color: #fff;
16
17 body {
18 background-color: $site-background-color; // default too bright. use gitweb's color
19 font-family: 'Open Sans',sans-serif;
20 margin: 0; // get rid of the small default margin so we can stripe the page
21 }