aboutsummaryrefslogtreecommitdiff
path: root/static/style.css
blob: e19365f33e37bea0480ff33fb69665eb4a5a1d63 (plain) (blame)
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
/*
 * Copyright (c) 2024 Runxi Yu <https://runxiyu.org>
 * SPDX-License-Identifier: AGPL-3.0-or-later
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

/*
 * TODO: Remove all uses of !important. These are obviously bad practice, but
 * it's not always trivial to get the precedence right.
 */

:root {
	--primary-bg: white;
	--primary-fg: black;
	--border: #b4b4b4;
	--greyedout: #b4b4b4;
	--anchor-underline-color: lightgray;
	--anchor-color: #0062cc;
	--theme: #0062cc;
	--theme-contrast: #ffffff;
	--box: #ebebeb;
	--box-contrast: black;
	--danger: #d32535;
	--danger-contrast: #ffffff;
	--white: #ffffff;
	--white-contrast: #222222;
	--header-fg: black;
	--header-bg: #dfdfdf;
}

@media (prefers-color-scheme: dark)  {
	:root {
		--primary-bg: #252525;
		--primary-fg: white;
		--border: #444444;
		--greyedout: #444444;
		--anchor-underline-color: #4A4A4A;
		--anchor-color: #3092fc;
		--theme: #0062cc;
		--theme-contrast: #ffffff;
		--box: #333333;
		--box-contrast: white;
		--danger: #d32535;
		--danger-contrast: #ffffff;
		--white: #202020;
		--white-contrast: #ffffff;
		--header-fg: white;
		--header-bg: #3a3a3a;
	}
}

html {
	font-family: system-ui, sans-serif;
	line-height: 1.2;
	background-color: var(--primary-bg);
	color: var(--primary-fg);
}

body {
	margin: 0;
	padding: 0;
}

main,
body > section,
.reading-width,
footer {
	margin: 1rem auto;
	padding-left: 1rem;
	padding-right: 1rem;
	max-width: 60rem;
}

/*
 * For accessibility reasons, we still want anchors to be underlined, but
 * perhaps not as profound of an underline as the default.
 */
a {
	color: var(--anchor-color);
	text-decoration: underline;
	text-decoration-color: var(--anchor-underline-color);
}

/*
 * However, although the site title will be an anchor, it should not be
 * underlined.
 */
#site-title {
	text-decoration: none;
}

/*
 * Navigation is a simple bulleted list with bullets in the middle only.
 * This should probably be revamped.
 */
nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
}
nav ul > li {
	display: inline-block;
}
nav ul > li:not(:last-child)::after {
	content:"\2000"
}

/*
 * The header should stick to the top of the page.
 */
header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	color: var(--header-fg);
	background-color: var(--header-bg);
	z-index: 1000;
	width: 100%;
}

/*
 * We don't want underlined anchors in the header in general, since it should
 * be obvious that things in it are links.
 */
header a {
	text-decoration: none;
	color: var(--header-fg);
}
.header-content {
	padding-left: 1rem;
	padding-right: 1rem;
	max-width: 60rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
}
header img {
	vertical-align: middle;
	max-height: 40px;
}
header h1 {
	font-size: 25px; /* TODO: Specifying font sizes in pixels is bad */
}

/*
 * The table, the most important element in my site design...
 */
table {
	margin-top: 0.4em;
	margin-bottom: 0.4em;
	border-collapse: collapse;
	border: 2px solid var(--border);
}
table.wide {
	width: 100%;
}
th[scope~="row"] {
	text-align: right;
}
th[scope~="col"] {
}
td {
	border: 1px solid;
	text-align: left;
	height: 1.25rem;
	border: 1px solid var(--border);
	padding: 3px 5px;
}
table.fat td {
	padding: 6px 5px;
}
td.th-like, th {
	background-color: var(--box) !important;
	border: 1px solid var(--border);
	font-weight: bold;
	padding: 3px 5px;
}
th.min, td.min {
	width: 0;
	min-width: fit-content;
	white-space: nowrap;
}

/*
 * Input elements, which are usually in tables anyway
 */
textarea {
	box-sizing: border-box;
	background-color: var(--box);
	resize: vertical;
}
textarea,
input[type=text],
input[type=password] {
	font-family: sans-serif;
	font-size: smaller;
	background-color: var(--box);
	color: var(--box-contrast);
	border: none;
	padding: 0.3rem;
	width: 100%;
	box-sizing: border-box;
}
td.tdinput, th.tdinput {
	padding: 0rem !important;
}
td.tdinput textarea,
td.tdinput input[type=text],
td.tdinput input[type=password],
th.tdinput textarea,
th.tdinput input[type=text],
th.tdinput input[type=password] {
	background-color: transparent !important;
}

/*
 * Button definitions.
 *
 * Each button should contain the .btn class and a .btn-type class, where type
 * is one of primary, danger, white, and normal.
 */
.btn-primary {
	background: var(--theme);
	color: var(--theme-contrast);
	border: var(--border) 1px solid;
	font-weight: bold;
}
.btn-danger {
	background: var(--danger);
	color: var(--danger-contrast);
	border: var(--border) 1px solid;
	font-weight: bold;
}
.btn-white {
	background: var(--white);
	color: var(--white-contrast);
	border: var(--border) 1px solid;
}
.btn-normal,
input[type=file]::file-selector-button {
	background: var(--box-contrast);
	border: var(--border) 1px solid !important;
	color: var(--box-contrast);
}
.btn,
input[type=submit],
input[type=file]::file-selector-button {
	display: inline-block;
	width: auto;
	min-width: fit-content;
	border-radius: 0;
	padding: .1rem .75rem;
	font-size: 0.9rem;
	transition: background .1s linear;
	cursor: pointer;
}
a.btn {
	text-decoration: none;
}


/*
 * Multiple columns, flexible wrapping
 */
.multicols {
	display: flex;
	flex-direction: row;
	@media(max-width: 50rem) {
		flex-wrap: wrap;
		gap: 0rem;
	}
	gap: 2rem;
	align-items: stretch;
}

.multicols div {
	min-width: 18em;
	/* max-width: 40rem; */
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

/*
 * Spanning elements across a flex container with equal space in between
 */
.flex-justify {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	border: none;
}

.message-box {
	margin: auto;
	max-width: 30rem;
	border: solid 2px var(--border);
	background-color: var(--box);
	padding: 0rem 1rem;
}

table#table-of-courses {
	width: 100%;
}

/*
 * .need-connection is the content that should actually display when we are
 * connected via WebSocket. The JavaScript would change display from none to
 * block when fully connected to WebSocket.
 */
.need-connection {
	display: none;
}

/*
 * Same for script-required, though the JavaScript hides this as soon as it's
 * loaded.
 */
.script-required {
	display: none;
}

/*
 * .broken-connection displays a message telling users to refresh the page,
 * after their WebSocket connection breaks. It should be hidden by default.
 */
.broken-connection {
	display: none;
}

/*
 * This site heavily uses CSS styling to display and hide messages, so by
 * default we put a big warning about CSS being broken, which disappears
 * once the main CSS, i.e. this file, is completely loaded. Therefore it's
 * probably best to put this at the bottom of this file.
 */
.broken-styling-warning {
	display: none;
}