blob: 7cbff9e8b06e0d968e30b8bc3c1b65aa89b777ba (
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
|
div {
display: grid;
grid-template-columns: 2fr 1fr;
}
#weeknotes-section {
grid-column: 2 / 3;
display: flex;
flex-direction: column;
row-gap: 1rem;
}
#written {
grid-row: 1;
grid-column: 1 / 2;
}
#what-weeknotes {
align-self: end;
margin-top: -0.75rem;
font-weight: normal;
}
.wk-notes {
padding: 0;
margin: 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
column-gap: 1rem;
row-gap: 1rem;
list-style: none;
display: flex;
}
.wk-long {
width: 100%;
}
h2 {
margin: 0 0 1rem 0;
}
#weeknotes {
margin: 0;
}
@media (max-width: 30rem) {
div {
display: flex;
flex-direction: column;
}
}
|