blob: 6ad3fd2e35e432d96550324f496fc9156aa54442 (
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
|
body {
font-family: sans;
}
a {
text-decoration: none;
}
ul {
columns: 300px;
}
li {
margin-bottom: 0.5em;
}
code {
font-size: 1.1em;
}
.header {
display: flex;
padding-top: 0.5em;
padding-bottom: 1em;
}
.left, .right {
flex: 1;
}
h1 {
margin-top: 0;
margin-bottom: 0;
width: 300px;
}
.release:not([hidden]) {
display: flex;
align-items: center;
gap: 1em;
}
.hide-release-notes .release-notes {
display: none;
}
#search {
padding: 0.5em;
}
@media (max-width: 600px) {
.header {
flex-direction: column;
}
}
|