-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (58 loc) · 1.01 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
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui,
helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial,
sans-serif;
}
* {
box-sizing: border-box;
}
#page {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
width: 100%;
padding: 1rem;
background: #212529;
color: #f8f9fa;
}
a:link,
a:active,
a:visited,
a:hover {
color: #d0ebff;
}
#page > * {
flex: 0;
}
#page main {
flex: 1;
}
.gallery {
border: 2px dashed white;
border-radius: 0.15rem;
display: flex;
gap: 1.5rem;
line-height: 1;
margin-top: 4rem;
max-width: calc(200px + 50vw);
overflow: auto;
padding: 1.5rem;
}
.gallery > * {
background: #343a40;
border-radius: 0.15rem;
margin: 0;
padding: 1rem;
font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console,
monospace;
}
.disclaimer {
opacity: 0.8;
font-size: 0.8em;
width: 100%;
text-align: center;
}