generated from webmural/moon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spill.css
70 lines (59 loc) · 938 Bytes
/
spill.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
html {
font-family: sans-serif;
font-size: max(3ex, 10vmin);
line-height: 1.6;
}
body {
box-sizing: border-box;
display: flex;
flex-flow: column;
margin: auto;
}
nav {
box-sizing: border-box;
display: block;
padding: 1em;
}
:any-link {
color: inherit;
text-decoration-style: dotted;
text-decoration-thickness: .2ex;
}
:focus {
text-decoration-style: wavy;
outline-style: groove;
outline-width: thick;
outline-color: #777;
}
.dim {
background: #111;
color: seashell;
}
.lit {
background: seashell;
color: #111;
}
@media (prefers-color-scheme: dark) {
.reflect {
background: #111;
color: seashell;
}
.absorb {
background: seashell;
color: #111;
}
}
@media (prefers-color-scheme: light) {
.reflect {
background: seashell;
color: #111;
}
.absorb {
background: #111;
color: seashell;
}
}
::selection {
background: salmon;
color: black;
}