-
Notifications
You must be signed in to change notification settings - Fork 8
/
style.css
100 lines (84 loc) · 1.19 KB
/
style.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
body {
max-width: 600px;
margin: 25px auto 0;
text-align: justify;
text-justify: auto;
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
padding: 25px;
border-left: 1px solid gray;
border-right: 1px solid gray;
font-size: 16px;
font-family: sans-serif;
}
@media (prefers-color-scheme: dark) {
body, a {
background-color: #222;
color: #eee;
}
a:hover {
color: #898989;
}
header img {
filter: invert(100%);
}
}
@media (prefers-color-scheme: light) {
body, a {
background-color: #eee;
color: #222;
}
a:hover {
color: #6c6c6c;
}
}
@media only screen and (max-width: 500px) {
body {
font-size: 22px;
}
footer a {
display: block;
width: 90%
}
}
dt {
font-weight: bold;
margin-top: 10px;
}
dl {
margin: 30px auto;
max-width: 400px;
text-align: left;
}
dd ul, dd ul li {
margin-left: 0px;
padding-left: 0px;
}
header {
text-align: center;
}
header img {
max-width: 100%;
max-height: 200px;
}
#langln {
font-size: smaller;
float: right;
}
.small {
font-size: smaller;
}
.alert {
color: red;
font-weight: bold;
}
.centered {
text-align: center;
}
footer {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}