Textual and style updates.
[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
13 $textfonts: Helvetica, Arial, serif;
14 $headingfonts: "Expletus Sans", $textfonts;
15
16 /* custom mixins */
17
18 @mixin body-text{
19         color:$foreground;
20         text-shadow:0 1px 0 #FFF;
21         font-family: $textfonts;
22 }
23
24 @mixin box-inset($inset: rgba(0,0,0,.15), $outset: #FFF){
25         @include box-shadow(0 1px 2px 0  $inset inset, 0 1px 0 0 $outset);
26 }