-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (48 loc) · 748 Bytes
/
style.css
File metadata and controls
59 lines (48 loc) · 748 Bytes
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
html {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
nav,
main {
display: grid;
}
body {
max-width: 800px;
margin: 0 auto;
}
main {
gap: 16px 32px;
}
code {
color: green;
background-color: azure;
display: inline-block;
border-radius: 4px;
padding: 2px 4px;
}
json-viewer {
background: black;
}
@media (min-width: 620px) {
main {
grid-template-columns: 1fr;
}
p {
grid-column: 1 / -1;
}
}
@media (prefers-color-scheme: dark) {
html {
background: black;
color: white;
}
a {
color: lightblue;
}
a:visited {
color: lightpink;
}
code {
color: lightgreen;
background-color: darkgreen;
}
}