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
---
---
@import "{{ site.theme }}";
body {
width: 100%;
display: flex;
flex-direction: column;
.page-header {
flex-grow: 0;
width: 100%;
}
.main-content {
flex-grow: 1;
width: 100%;
margin: 0;
}
.site-footer-credits {
display: none;
}
.site {
display: flex;
flex-direction: row;
.site-nav {
flex-grow: 0;
font-size: 14px;
min-width: 245px;
padding-top: 37px;
ul ul {
padding-left: 10px;
list-style-type: disc;
}
}
.site-content {
flex-grow: 1;
}
}
}