-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
153 lines (127 loc) · 2.22 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
* {
margin: 0;
padding: 0;
}
body {
margin: 0 auto;
overflow-y: scroll;
max-width: 45em;
font-family: Helvetica, freesans, arial, sans-serif;
font-size: 15px;
line-height: 25.5px;
color: #333;
}
#menu {
width: 100vw;
margin-left: calc(-50vw + 50%);
}
#menu img {
width: 100%;
margin: 0;
padding: 0;
display: block;
}
#menu ul {
background: #1c1c1c;
overflow: hidden;
}
#menu li {
display: block;
float: left;
border-right: solid 1px #484846;
}
#menu li.active a {
color: #b4cb32;
text-weight: 900;
}
#menu a {
display: block;
color: #ddd6d4;
text-decoration: none;
padding: 0.5em 1em;
}
#menu a:hover {
background: #2c2c2c;
}
#main {
margin: 2em;
}
#main blockquote {
font-size: 130%;
}
#main blockquote img {
margin-bottom: 0.5em;
}
#main p, #main ul, #main ol, #main pre, #main h2, #main h3, #main h4, #main hr, #main dl {
margin-bottom: 1em;
}
#main li, #main pre {
margin-left: 2em;
}
#main pre {
font-size: 0.75em;
white-space: pre-wrap;
}
#main img {
width: 100%;
}
#main .nordlicht {
color: #ddd6d4;
background: black;
width: 95vw;
margin-left: calc(-47.5vw + 50%);
border-top: 10px solid black;
border-bottom: 10px solid black;
border-radius: 10px;
margin-bottom: 2em;
}
#main .nordlicht img {
width: 95vw;
display: block;
}
#main .nordlicht p {
margin-top: 0.4em;
margin-bottom: 0;
margin-left: 1em;
}
#main h1 {
font-size: 36px;
font-weight: 700;
margin-top: 0;
margin-bottom: 16px;
line-height: 43.2px;
border-bottom: solid 1px #eee;
}
#main h2 {
font-size: 30px;
font-weight: 700;
margin-top: 30px;
margin-bottom: 15px;
line-height: 51px;
border-bottom: solid 1px #eee;
}
#main h3 {
font-size: 22.5px;
font-weight: 700;
line-height: 38.25px;
margin-top: 22.5px;
margin-bottom: 15px;
}
#main table td {
min-width: 10em;
}
code {
font-family: Consolas, "Liberation Mono", Courier, monospace;
}
#footer {
width: 100vw;
margin-left: calc(-50vw + 50%);
color: #ddd6d4;
background: #1c1c1c;
}
#footer p {
padding: 0.5em;
}
#footer a {
color: #ddd6d4;
}