Make some menus reponsive, some work on book boxes.
[wolnelektury.git] / apps / wolnelektury_core / static / css / main / base.scss
1 @import "tools";
2
3
4 /* Basic layout */
5 html, body {
6     margin: 0;
7     padding: 0;
8 }
9
10
11 .clearboth {
12     clear: both;
13 }
14
15
16
17 /* Basic colors and fonts */
18 body {
19     font-family: Georgia;
20     background: #f7f7f7;
21     color: black;
22
23     @include size-px(font-size, 13);
24 }
25
26 a {
27     color: #0d7e85;
28     text-decoration: none;
29
30     img {
31         border: 0;
32     }
33 }
34
35 h1 {
36     @include size-px(font-size, 35);
37     font-weight: normal;
38     @include size-px(margin-top, 14);
39
40     a {
41         color: inherit;
42     }
43 }
44
45 .normal-text {
46     line-height: 1.3em;
47 }