-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.css
173 lines (163 loc) · 2.87 KB
/
app.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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
html,
body {
background: #000;
color: #fff;
font-family: sans-serif;
}
html,
body,
.firepad,
.ace_editor,
.pane,
iframe {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
border: 0;
overflow: hidden;
}
iframe {
overflow: auto;
}
.dragging iframe {
pointer-events: none;
}
body {
position: absolute;
left: -1px;
top: -1px;
right: -1px;
bottom: -1px;
width: auto;
height: auto;
}
.leaf-pane {
border-radius: 2px;
position: relative; /* for .label and .leaf-pane::after positioning */
}
.leaf-pane::after {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
z-index: 50;
border-radius: 2px;
box-shadow: 0 0 1px rgba(255, 255, 255, 0.5) inset;
pointer-events: none;
}
.col-resizing * { cursor: col-resize !important; }
.row-resizing * { cursor: row-resize !important; }
.multi-resizing * { cursor: move !important; }
.show-output-only .output-pane {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
width: auto !important;
height: auto !important;
}
.show-output-only .leaf-pane:not(.output-pane) {
visibility: hidden;
}
.show-output-only .label {
display: none;
}
.label {
position: absolute;
right: 5px;
top: 2px;
z-index: 10;
border: 0;
border-radius: 2px;
background: black;
color: white;
opacity: 0.3;
padding: 3px 5px;
}
.errors {
position: absolute;
bottom: 0;
left: 0;
right: 0;
overflow: auto;
max-height: 100%;
}
.error {
/*text-align: center;
background: rgba(255, 0, 0, 0.8);
color: white;*/
padding: 5px;
background: rgba(109, 0, 0, 0.8);
color: #B56D6D;
/*box-shadow: 0 1px white;*/
box-shadow: 0 1px rgba(239, 139, 139, 0.3) inset;
}
.error button {
border: 0;
background: none;
color: #FFACAC;
font-size: inherit;
padding: 0;
cursor: pointer;
}
.ace_hidden-cursors {
opacity: 0;
}
::-webkit-scrollbar {
width: 5px;
height: 5px;
background: #000;
}
::-webkit-scrollbar-thumb {
background: #555;
}
::-webkit-scrollbar-thumb:hover {
background: #777;
}
.disabled-output {
position: relative;
height: 100%;
background-color: rgb(25, 25, 25);
background-image: linear-gradient(-45deg, black 25%, transparent 25%, transparent 50%, black 50%, black 75%, transparent 75%, transparent);
background-size: 4px 4px;
}
.disabled-output p {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
margin: 15px 0;
color: rgb(50, 46, 38);
font-weight: bold;
text-shadow: 0 1px 1px #000, 0 0 2px #000, 0 0 20px #000;
}
.disabled-output > button {
margin: auto;
position: absolute;
left: 0; right: 0; top: 0; bottom: 0;
width: 100px;
height: 100px;
background: transparent;
padding: 0;
border: 0;
outline: 0;
}
.disabled-output > button svg {
width: 100px;
height: 100px;
}
.disabled-output > button path {
fill: #332F28;
filter: url(#drop-shadow);
}
.disabled-output > button:hover path {
fill: #90661B;
}
.disabled-output > button:active path {
fill: #B9872F;
filter: url(#recessed);
}