add my PhD thesis
[web.git] / ralf / style.scss
1 ---
2 hide: true
3 ---
4 @charset "utf-8";
5
6 /* Variables */
7 $navi-width:      11em;
8 $navi-indent:     1.2em;
9 $frame-max-width: 50em;
10 $intrusion-width: 1.0em;
11 $outer-margin:    1.1em;
12
13 $small-width:      $frame-max-width + 2*$outer-margin;
14 $medium-width:     $small-width + $intrusion-width + $navi-width;
15
16 $background-color:       #fafafa;
17 $text-color:             #303030;
18 $light-text-color:       #808080;
19 $code-background-color:  #F0F0F0;
20 $link-color:             #237fbf;
21 $light-link-color:       #69a7d2;
22
23 /* Include the actual styles */
24 @import
25         "normalize",
26         "base",
27         "layout",
28         "syntax-highlighting"
29 ;