-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.css
49 lines (43 loc) · 1.05 KB
/
layout.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
pre {
border: 2px solid #212128;
margin: 5px;
background-color: #2d2e38;
color: hsl(220, 14%, 71%);
/* white-space: pre-wrap; */
}
.form-control {
border: 2px solid #212128;
margin: 5px;
background-color: #2d2e38;
color: hsl(220, 14%, 71%);
font-family: monospace;
font-size: 12px;
/* white-space: pre-wrap; */
}
.form-control:focus {
background-color: #2d2e38;
color: hsl(220, 14%, 71%);
}
.string { color: hsl(207, 82%, 66%); } /* blue */
.number { color: hsl(355, 65%, 65%); } /* red */
.boolean { color: hsl( 29, 54%, 61%); } /* orange */
.null { color: hsl(286, 60%, 67%); } /* purple */
.key { color: hsl( 95, 38%, 62%); font-weight: bold;} /* green */
html {
font-size: 14px;
}
.progressbar-outer {
border-radius: 5px;
margin: 5px;
border-radius: 5px;
background-color: hsl(355, 65%, 65%);
}
.progressbar {
border-radius: 5px;
height: 10px;
background-color: hsl( 95, 38%, 62%);
}
body {
background: #292d30 !important;
color: hsl(220, 14%, 71%);
}