about summary refs log tree commit diff
path: root/served/words/words.css
blob: 90a888b3dc3cdb686c1d90ba545c37f64ac54b0e (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
div {
	display: grid;
	grid-template-columns: 2fr 1fr;
}

#weeknotes-section {
	grid-column: 2 / 3;
	display: flex;
	flex-direction: column;
}

#written {
	grid-row: 1;
	grid-column: 1 / 2;
}

#weeknotes-list {
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	column-gap: 1rem;
	list-style: none;
	flex-wrap: wrap;
}

#what-weeknotes {
	align-self: end;
	margin-top: -0.75rem;
	font-weight: normal;
}

#weeknotes-ifc {
	padding: 0;
	margin: 0.25rem 0 0.75rem 0;
	display: grid;
	grid-template-columns: min-content 1fr 1fr;
	column-gap: 1rem;
	list-style: none;
}

#weeknotes-early-only {
	grid-column: 2 / 4;
	padding-right: calc(50% + 1.5rem);
	text-align: right;
}

.early {
	text-align: right;
	padding-right: 1rem;
}

.late {
	text-align: left;
}

.month {
	text-align: center;
	grid-column: 2 / 4;
	padding-right: 1rem;
}

h2 {
	margin: 0 0 1rem 0;
}

#weeknotes {
	margin: 0;
}

.miss {
	color: var(--text-dim);
}

@media (max-width: 30rem) {
	div {
		display: flex;
		flex-direction: column;
	}
}