Lots of updates. Pretty much early-release ready--just needs documentation links.
[philo.git] / static / scss / _var.scss
1 /* Compass Vars */
2
3 $base-font-size: 16px;
4 $base-line-height: 25px;
5
6
7 /* Custom Vars */
8 $page-width: 750px;
9 $page-background: #E0E5EF;
10 $content-background: transparent;
11 $foreground: #333;
12 $accent: #408000;
13 $accent2: #004080;
14
15 $textfonts: Helvetica, Arial, serif;
16 $headingfonts: "Expletus Sans", $textfonts;
17
18 /* custom mixins */
19
20 @mixin body-text{
21         color:$foreground;
22         text-shadow:0 1px 0 #FFF;
23         font-family: $textfonts;
24 }
25
26 @mixin box-inset($inset: rgba(0,0,0,.15), $outset: #FFF){
27         @include box-shadow(0 1px 2px 0  $inset inset, 0 1px 0 0 $outset);
28 }