-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
103 lines (85 loc) · 1.48 KB
/
style.css
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/* */
* {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
html {
font-family: 'IBM Plex Serif', serif;
font-size: 18px;
}
body {
border: 0px;
margin: 0px;
padding: 0px;
color: black;
background-color: #fcfffc;
}
.main {
margin: 4em 0px 8em 0px;
padding: 0.4em 0.2em;
column-count: 3;
column-width: 22em;
-webkit-column-gap: 0px;
-moz-column-gap: 0px;
column-gap: 0px;
column-rule: 1px solid lightgrey;
}
.main > div {
-webkit-column-break-inside: avoid;
-moz-column-break-inside: avoid;
-o-column-break-inside: avoid;
-ms-column-break-inside: avoid;
column-break-inside: avoid;
page-break-inside: avoid;
/* zo moet het */
break-inside: avoid;
padding: 0px 1em;
margin: 0px 0.2em 4em 0.2em;
}
.footer {
text-align: center;
font-size: small;
}
h1 {
margin-top: 4em;
text-align: center;
}
h1, h2 {
font-variant: small-caps;
color: #62757f;
letter-spacing: .1em;
margin-top: 2em;
}
h1 {
font-size: xx-large;
font-weight: 200;
}
h2 {
margin-top: 0px;
font-size: x-large;
font-weight: 300;
}
ul {
list-style-type: square;
}
ul>li>ul {
list-style-type: circle;
}
ul>li>ul>li>ul {
list-style-type: disc;
}
ul {
margin-top: .4em;
margin-bottom: .8em;
}
li {
margin-bottom: .5em;
}
a {
text-decoration: none;
color: #0000ee;
}
a:hover {
text-decoration: underline;
}