summaryrefslogtreecommitdiff
path: root/assets/theme/main.scss
blob: d0c203d309c8bfc2a46d191246c3034489db1d19 (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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
// Variables
$mainWidth: 900px;


// Colors
@import url("/css/highlight-emacs.css") screen and (prefers-color-scheme: light);
@import url("/css/highlight-monokai.css") screen and (prefers-color-scheme: dark);

@media (prefers-color-scheme: light) {
	:root {
		--blockBackgroundColor: #c2beb9;
		--bodyBackgroundColor: #d7d5d1;
		--bodyForegroundColor: #2a2e2f;
		--codeBackgroundColor: #f8f8f8;
		--linkForegroundColor: #07a;
	}
}

@media (prefers-color-scheme: dark) {
	:root {
		--blockBackgroundColor: #1c1e1f;
		--bodyBackgroundColor: #131516;
		--bodyForegroundColor: #bcb7ae;
		--codeBackgroundColor: #272822;
		--linkForegroundColor: #07a;
	}
}

// Actual CSS
html {
	background-color: var(--bodyBackgroundColor);
}

body {
	color: var(--bodyForegroundColor);
	font-size: 16px;
	line-height: 1.4;
	text-align: justify;
	width: 100%;
	margin: 0;
}

small {
	font-size: 0.7em;
}

li p {
	margin: 0;
}

table {
	width: 100%;
}

a.image-link {
	text-decoration: none;
}

span.footer-link-seperator {
	margin: .5rem;
	overflow: hidden;
}

div.container {
	max-width: $mainWidth;
	margin: 0 auto 0.5em auto;
	padding: 1em 2em 0 2em;
}

span.citneed{
	vertical-align: top;
	font-size: 0.7em;
	padding-left: 0.3em;
}

p.text-center {
	text-align: center;
}

article {
	footer hr {
		width: 50%
	}
}

section.admonition {
	background-color: var(--blockBackgroundColor);
	border: 1px solid var(--bodyForegroundColor);
	margin: .5rem auto 1.74rem auto;
	width: 85%;
	max-width: $mainWidth * .9;
	padding: 1.5rem;

	.admonition-title {
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.5rem;
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	}

	p {
		margin: 0;
	}
}

@media(min-width: $mainWidth) {
	section.admonition {
		display: grid;

		grid-template-columns: [title] .25fr [body] 1fr [end];

		.admonition-title {
			grid-column-start: title;
			grid-column-end: body;
		}

		p {
			grid-column-start: body;
			grid-column-end: end;

			padding-left: 10px;
			border-left: 1px solid #ddd;
		}
	}
}

@media(max-width: $mainWidth) {
	section.admonition {
		.admonition-title {
			text-align: center;
			margin-top: 0;
		}

		p {
			padding-top: 10px;
			border-top: 1px solid #ddd;
		}
	}
}

// Navigation bar
nav {
	padding-bottom: 8px;
	border-bottom: double var(--bodyForegroundColor);
	text-align: center;
	font-family: Sans;

	a, a:visited {
		margin: 0 0.5em;
		font-size: 24px;
		text-decoration: none;
		color: var(--bodyForegroundColor);
	}

	.brand-name {
		text-align: center;
		display: block;
		font-weight: bold;
		font-size: 32px;
		color: var(--bodyForegroundColor);
		margin-bottom: 8px;
	}
}

// Generic links
a, a:visited {
	color: var(--linkForegroundColor);
}

// Syntax highlighting
div.highlight {
	border: 2px solid var(--bodyForegroundColor);
	background-color: var(--codeBackgroundColor);
	width: 90%;
	margin: 0 auto;
	overflow-x: auto;

	pre {
		margin: 0;
		padding: 6px 6px;
	}

	.code-link {
		border-top: 1px dotted var(--bodyForegroundColor);
		padding: 3px 8px;
		text-align: right;
	}
}

code {
	padding: 2px;
}

pre code {
	padding: 0;
}

// Helper classes
.center {
	text-align: center;
}

.quoteblock {
	width: 90%;
	margin: .5rem auto;
	border-left: double black;
	padding: 0.5em;
	background-color: var(--blockBackgroundColor);

	blockquote {
		font-style: italic;
	}

	div.attribution {
		text-align: right;
		margin-right: 1em;
	}
}