blob: e65b8a8ff5cbb424e9a10927b05a07141f59630f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Colors
$teal: #00819C;
$gray: darken(desaturate($teal, 100%), 10%);
$light-gray: lighten($gray, 30%);
$highlight: #ffd;
// Fonts
$sans: 'open_sans', sans-serif;
$serif: 'crimson_text', serif;
$monospace: 'source_code_pro', monospace;
// Layout
$container-width: 900px;
|