-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.css
More file actions
120 lines (104 loc) · 1.94 KB
/
App.css
File metadata and controls
120 lines (104 loc) · 1.94 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
body {
display: flex;
padding: 0;
margin: 0;
height: 100vh;
font-family: BlinkMacSystemFont, 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
font-size: 0;
}
.parent-container,
.fiddling-container {
display: flex;
width: 100%;
}
.pane-editors,
.pane-preview {
display: flex;
flex-grow: 1;
flex-shrink: 0;
width: 50%;
}
.pane-editors {
flex-direction: column;
border-right: 1px solid rgba(0,0,0,0.15);
box-sizing: border-box;
}
.pane-preview {
display: flex;
background-color: white;
flex-direction: column;
}
.preview-container {
display: flex;
flex-direction: column;
width: 100%;
flex-grow: 1;
}
.preview-frame {
flex-grow: 1;
}
.console-container {
display: none;
border-top: 1px solid rgba(0,0,0,0.15);
width: 100%;
height: 25vh;
font-size: 14px;
box-sizing: border-box;
overflow: auto;
}
.console-container-visible {
display: block;
}
.console-lines > div {
font-family: 'SF Mono', 'Inconsolata', 'Monaco', 'Consolas', monospace;
font-size: 12px;
box-sizing: border-box;
border-bottom: 1px solid rgba(0,0,0,0.05);
line-height: 1.5;
padding-left: 20px;
}
.console-input {
width: 100%;
outline: none;
border: 0;
box-sizing: border-box;
font-family: 'SF Mono', 'Inconsolata', 'Monaco', 'Consolas', monospace;
font-size: 12px;
line-height: 1.5;
color: #094650;
padding: 2px 5px 2px 20px;
}
.editors-container {
display: flex;
flex-grow: 1;
flex-shrink: 1;
flex-direction: column;
overflow: auto;
}
.editor-container {
flex: 1;
}
.controls-container {
display: flex;
flex-direction: column;
flex-grow: 0;
flex-shrink: 0;
border-top: 1px solid rgba(0,0,0,0.15);
padding: 0.5em 1em;
color: #094650;
font-size: 10px;
-webkit-user-select: none;
cursor: default;
}
.controls-container-console {
align-self: flex-end;
}
.editor-name {
padding: 5px 10px;
color: #9EB5CA;
font-weight: 500;
font-size: 12px;
}
.editor {
position: relative;
}