-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
80 lines (71 loc) · 1.15 KB
/
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
69
70
71
72
73
74
75
76
77
78
79
80
body {
background-color: black;
}
.standalone {
}
.canvas {
position: absolute;
width: 100%;
height: 100%;
left: 0px;
top: 0px;
pointer-events: none;
z-index: 1;
}
.editorAndStatus {
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
position: absolute;
left: 0px;
top: 0px;
overflow: hidden;
}
.editor {
flex-grow: 1;
flex-direction: column;
background-color: transparent;
width: 100%;
resize: none;
}
.info {
flex-grow: 1;
flex-direction: column;
background-colour: transparent;
width: 100%;
color: white;
font-family: Inconsolata,Consolas,monospace;
background-color: transparent;
border: none;
resize: none;
box-shadow: none;
outline: none;
font-size: 1em;
overflow: scroll;
}
.editorArea {
font-family: Inconsolata,Consolas,monospace;
background-color: transparent;
border: none;
width: 100%;
height: 100%;
color: white;
resize: none;
overflow: hidden;
box-shadow: none;
outline: none;
font-size: 1em;
}
.status {
font-family: Inconsolata,Consolas,monospace;
width: 100%;
color: white;
font-size: 1em;
}
.errors {
float: left;
}
.fps {
float: right;
}