blob: 0dc04543c0e011603e8b559fca503987313953f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
.page {
padding-top: $padding-lg;
margin: auto;
width: $page-width;
min-height: 600px;
em {
font-style: italic;
}
}
.page-content {
h2 {
font-size: round($font-size-base * 2);
line-height: 2;
}
h3 {
font-size: round($font-size-base * 1.7);
margin-top: $padding-xl;
line-height: 2;
}
p, ul {
font-size: round($font-size-base * 1.2);
line-height: 1.5;
margin-bottom: $padding-xl;
}
ul {
list-style-type: disc;
position: relative;
left: $padding-xl;
}
}
.page-stretch {
@extend .page;
margin: auto;
width: 95%;
h2 {
text-align: left;
font-size: $font-size-lg;
max-width: $page-width;
margin: auto;
margin-bottom: $padding-lg*2;
.sub-title {
font-size: $font-size-base;
font-style: italic;
}
}
}
|