-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (57 loc) · 856 Bytes
/
style.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
body {
margin: 0;
padding: 0;
margin-top: 5px;
overflow: hidden;
}
button {
margin: 0;
}
.CodeMirror {
margin: 0;
padding: 0;
height: auto;
}
.CodeMirror-scroll {
height: auto;
overflow-y: hidden;
overflow-x: auto;
}
.CodeMirror-collapserange {
width: .6em;
}
span.CodeMirror-matchhighlight {
background: #45443b
}
.CodeMirror-focused span.CodeMirror-matchhighlight {
background: #45443b; !important
}
.CodeMirror-matchingbracket {
background: #45443b;
}
#editor {
position: absolute;
top: 37px;
bottom: 24px;
left: 0;
right: 0;
background: #262626;
}
.info {
font-family: monospace;
white-space: nowrap;
position: absolute;
bottom: 0;
background: #eee;
padding: 2px;
height: 20px;
left: 0;
right: 0;
}
.info label {
font-weight: bold;
}
.buttons {
padding: 2px;
height: 25px;
}