blob: 614d2e24ba7a10a0d76a653b85eaa1891a500974 (
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
|
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');
:root {
--bg: #F3FFF0;
--fg: #1E221B;
}
html {
background: var(--bg);
color: var(--fg);
font-family: 'Roboto Slab', serif;
}
body {
max-width: 80ex;
padding: 1ex;
margin: auto;
}
header {
display: flex;
align-items: center;
text-align: center;
}
footer {
margin-bottom: 2em;
}
.list {
padding: 1ex;
border: 1px solid gray;
}
@media (max-width: 720px) {
header {
flex-direction: column;
}
}
main img {
width: 100%;
margin-bottom: 2em;
}
main {
padding-bottom: 2em;
}
|