aboutsummaryrefslogtreecommitdiff
path: root/iadocs/critb_recordoftasks.htm
blob: 500cbb247ea70af98de60440492660e104aaca3b (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
<!DOCTYPE html>
<!-- 
  -- Copyright (C) 2024  Runxi Yu <https://runxiyu.org>
  -- SPDX-License-Identifier: CC0-1.0
  -- This license header only applies to this cover page.
  -->
<!--
  -- This feels like a very wrong way to do multi-line HTML comments
  -- Anyways, to anyone reading my actual HTML source: I found the
  -- template form to be a bit strange in how it uses tables, and it
  -- really doesn't fit into my model of how the web should work.
  -- So I took the CSS I use in the actual solution and removed some
  -- bits, and there you have it...
  -->
<!--
  -- NOTE (to self): This cover page is not included in the word count
  -- and its functionality is not assessed.
  -->
<html lang="en">
	<head>
		<title>Criterion B &ndash; Record of tasks</title>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
/*
 * General styling for my websites and stuff.
 * Well, I guess a reduced version thereof, fit for this cover page.
 */

:root {
	--primary-bg: white;
	--primary-fg: black;
	--border: #b4b4b4;
	--greyedout: #b4b4b4;
	--anchor-underline-color: lightgray;

	--theme: #0062cc;
	--theme-contrast: #ffffff;
	--boxbg: #ebebeb;
	--boxfg: #000000;
	--rowbg-even: #ffffff;
	--rowbg-odd: #f7f7f7;
	--danger: #d32535;
	--danger-contrast: #ffffff;
	--white: #ffffff;
	--white-contrast: #222222;
}

html {
	font-family: system-ui, sans-serif;
	line-height: 1.2;
	border-color: var(--theme); /* FIXME: don't remember why I put this here */
	background-color: var(--primary-bg);
	color: var(--primary-fg);
}

body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
}

header, main, body > section {
	margin: 1rem auto;
	padding-left: 1rem;
	padding-right: 1rem;
	max-width: 60rem;
	/* min-height: 100vh; */
}

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

/*
 * 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: left;
}
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(--boxbg) !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;
}
tr:nth-child(even) td {
	background-color: var(--rowbg-even);
}

tr:nth-child(odd) td {
	background-color: var(--rowbg-odd);
}

/*
 * Input elements, which are usually in tables anyway
 */
textarea {
	box-sizing: border-box;
	background-color: var(--boxbg);
	resize: vertical;
}
textarea, input[type=text], input[type=password] {
	font-family: sans-serif;
	font-size: smaller;
	background-color: var(--boxbg);
	border: none;
	padding: 0.3rem;
	width: 100%;
	box-sizing: border-box;
}
td.tdinput {
	padding: 0rem !important;
}
td.tdinput textarea, td.tdinput input[type=text], td.tdinput input[type=password] {
	background-color: transparent !important;
}
th.tdinput {
	padding: 0rem !important;
}
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(--boxbg);
	border: var(--border) 1px solid !important;
	color: var(--boxfg);
}
.btn, input[type=submit], input[type=file]::file-selector-button {
	display: inline-block;
	/* width: 100%; */
	width: auto;
	min-width: fit-content;
	border-radius: 0;
	padding: .1rem .75rem;
	font-size: 0.9rem;
	transition: background .1s linear;
	/* border: none; */
	cursor: pointer;
}
a.btn {
	text-decoration: none;
}


/* I need to re-learn how flexbox works */

/*
 * 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;
}

pre {
	background-color: rgb(240, 240, 240);
	padding: 0.3rem;
	overflow-x: scroll;
}
</style>
	</head>
	<body>
		<header>
			<h1>Criterion B &ndash; Record of tasks</h1>
		</header>
	</body>
</html>