-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (70 loc) · 1.49 KB
/
Copy pathstyle.css
File metadata and controls
82 lines (70 loc) · 1.49 KB
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
html, body {
margin: 0;
padding: 0;
background-color: #111;
overflow: hidden;
height: 100%;
}
body {
display: flex;
flex-direction: column;
height: 100vh;
}
#gl-canvas {
flex: 1 1 auto;
display: block;
width: 100%;
min-height: 0;
cursor: grab;
}
#gl-canvas:active {
cursor: grabbing;
}
.console {
flex: 0 0 auto;
display: flex;
flex-direction: column;
width: 100%;
border-top: 1px solid #222;
}
#console-history {
height: 120px;
overflow-y: auto;
width: 100%;
background-color: #0a0a0a;
padding: 4px 6px;
box-sizing: border-box;
}
#enter {
font-family: 'Courier New', monospace;
font-size: 13px;
width: 100%;
background-color: #0d1117;
color: #b0c8e8;
border: none;
border-top: 1px solid #1e2a3a;
padding: 6px 8px;
box-sizing: border-box;
}
#enter::placeholder {
color: #3a5070;
}
input:focus {
outline: none;
box-shadow: none;
}
.preCommand {
margin: 0;
padding: 1px 0;
font-family: 'Courier New', monospace;
font-size: 12px;
line-height: 1.5;
}
.preCommand.cmd { color: #7ab8f5; }
.preCommand.info { color: #8fc8a8; }
.preCommand.ok { color: #a8e6a0; }
.preCommand.error { color: #f08080; }
.preCommand { color: #8fa0b8; }
#console-history::-webkit-scrollbar { width: 4px; }
#console-history::-webkit-scrollbar-track { background: #0a0a0a; }
#console-history::-webkit-scrollbar-thumb { background: #2a3a4a; border-radius: 2px; }