-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
55 lines (55 loc) · 945 Bytes
/
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
:root {
--d0: #333;
--d1: #444;
--d2: #555;
--d3: #666;
--d4: #777;
--text-primary: #fff;
}
* {
margin: 0;
padding: 0;
}
body {
width: 100vw;
height: 100vh;
overflow: hidden;
}
label {
/* > icon in bottom left console */
color: lightgreen !important;
}
#root {
width: 100%;
height: 100%;
}
.tabs,
.toolbar,
.console,
.logLine,
.tooltip {
background-color: var(--d0) !important;
color: var(--text-primary) !important;
}
#input {
background-color: var(--d1) !important;
color: var(--text-primary) !important;
}
.CodeMirror-vscrollbar,
.CodeMirror-hscrollbar {
scrollbar-color: var(--d3) var(--d1);
&::-webkit-scrollbar {
width: 11px;
}
&::-webkit-scrollbar-track {
background: var(--d1);
}
&::-webkit-scrollbar-thumb {
border: 3px solid var(--d1);
border-radius: 6px;
background-color: var(--d3);
}
&::-webkit-scrollbar-thumb:hover {
background-color: var(--d4);
}
}