forked from something-on-a-bus-this-summer/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
62 lines (53 loc) · 764 Bytes
/
styles.css
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
body {
max-width: 800px;
padding: 16px;
margin: auto;
}
.mb-hide {
display: none;
}
@media (min-width: 800px) {
body {
margin-top: 48px;
}
.mb-hide {
display: inline-block;
}
}
.signatures {
display: flex;
flex-wrap: wrap;
gap: 24px;
}
table {
border-collapse: collapse;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
ul {
padding-inline-start: 20px;
margin-block-start: 0.4em;
margin-block-end: calc(0.4em - 8px);
}
li {
margin-bottom: 8px;
}
.dark-theme {
background-color: #000000;
color: #e0e0e0;
}
.dark-theme a {
color: #bb86fc;
}
.dark-theme .signatures img {
filter: invert(1);
}
.name-suggestion {
color: #3c4858;
}
.dark-theme .name-suggestion {
color: white;
}