-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (62 loc) · 997 Bytes
/
Copy pathstyle.css
File metadata and controls
70 lines (62 loc) · 997 Bytes
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
body {
margin: 0;
background-color: #282a36;
color: #f8f8f2;
font-family: sans-serif;
display: flex;
flex-direction: column;
height: 100vh;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #44475a;
padding: 10px;
}
select {
padding: 5px;
width: 150px;
}
#runButton {
width: 100px;
height: 40px;
cursor: pointer;
}
#editor {
flex: 1;
}
.CodeMirror {
height: 100%;
font-size: 16px;
}
#resizer {
height: 5px;
cursor: ns-resize;
background-color: #6272a4;
position: absolute;
top: -5px;
left: 0;
width: 100%;
}
#output {
background-color: #000;
color: #f8f8f2;
width: 100vw;
height: 300px;
border-top: 3px solid #6272a4;
position: absolute;
bottom: 0;
left: 0;
display: none;
flex-direction: column;
align-items: start;
padding: 10px;
box-sizing: border-box;
user-select: none;
overflow: auto;
}
#outputContent {
white-space: pre-wrap;
margin-top: 10px;
}