-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
96 lines (80 loc) · 1.21 KB
/
styles.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
@font-face {
font-family: "hack";
font-display: swap;
font-style: normal;
font-weight: 400;
src: url("../webfonts/hack-regular-subset.woff2") format("woff2");
}
@font-face {
font-family: "hack";
font-display: swap;
font-style: italic;
font-weight: 400;
src: url("../webfonts/hack-italic-subset.woff2") format("woff2");
}
body {
font-family: "hack", monospace;
font-size: 16px;
font-weight: 400;
background-color: var(--oc-gray-9);
color: var(--oc-green-9);
}
main {
position: absolute;
width: 98%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@media (min-width: 576px) {
main {
font-size: 18px;
width: 90%;
}
}
@media (min-width: 768px) {
main {
font-size: 20px;
width: 80%;
}
}
h1,
p {
margin: 0;
}
a {
color: inherit;
font-style: italic;
}
a:hover,
a:active {
color: var(--oc-green-2);
}
#json {
white-space: nowrap;
}
#json:before {
content: "{";
}
#json:after {
content: "}";
}
.my {
margin-top: 1rem;
margin-bottom: 1rem;
}
.mt {
margin-top: 1.5rem;
}
.ms {
margin-left: 1.5rem;
}
.key {
color: var(--oc-green-4);
text-transform: lowercase;
}
.error,
.value {
color: var(--oc-green-4);
text-transform: lowercase;
}