blob: 2aca4f6d78756efa19acade005588607c5c0d417 (
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
|
h2 {
text-decoration: underline;
margin-bottom: 0.5rem;
}
h3 {
margin-top: 0.5rem;
}
#downloads {
display: flex;
flex-direction: column;
}
#downloads ul {
margin: 0;
list-style: square;
}
code {
background-color: var(--background-dim);
padding: 1px 4px;
border-radius: 4px;
}
#float-hell {
display: block;
}
#downloads {
display: flex;
flex-direction: row;
}
@media (max-width: 30rem) {
#downloads {
display: grid;
grid-template-columns: min-content min-content;
}
}
|