-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (69 loc) · 1.1 KB
/
style.css
File metadata and controls
70 lines (69 loc) · 1.1 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
/** Grid **/
html,body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
overflow: hidden;
position: relative;
}
body: {
display: flex;
flex-direction: column;
}
body > .layout {
width: 100%;
height: 100%;
}
.layout {
position: relative;
flex: 1;
display: flex;
}
.horizontal {
height: 100%;
flex-direction: row;
}
.vertical {
width: 100%;
flex-direction: column;
}
.layout > :not([style*="display: none"]) {
border: none;
outline: none;
padding: 0;
margin: 0;
flex: 1;
height: 100%;
width: 100%;
box-sizing: border-box;
}
/** app specific **/
.CodeMirror{
border-right: 2px solid rgba(0,0,0,0.04) !important;
height: 100%;
}
.col{
position: relative;
height: 100%;
}
#console{
font-family: Menlo, monaco;
padding: 10px;
font-size: 12px;
line-height: 20px;
height: 100%;
}
span.label{
position: absolute;
bottom:0;
right:0;
padding: 5px 10px;
background: rgba(0,0,0,0.8);
text-transform: uppercase;
font-family: HelveticaNeue, helvetica, arial;
font-size :12px;
color: rgba(255,255,255,0.8);
z-index: 1;
border-top-left-radius: 5px;
}