-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
72 lines (59 loc) · 835 Bytes
/
index.css
File metadata and controls
72 lines (59 loc) · 835 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
71
html,
body {
height: 100%;
margin: 0;
font-family: 'Roboto', sans-serif;
color: #ddd
}
h1 {
position: relative;
top: 5%;
left: 5%;
}
.box {
display: flex;
flex-flow: column;
height: 100%;
}
.box .row {
border: 1px dotted grey;
}
.box .row.header {
flex: 0 1 auto;
background-color: #004700;
}
.box .column.content {
flex: 1 1 auto;
height: 100%;
}
.box .row.footer {
flex: 0 1 40px;
}
.column {
float: left;
width: 50%;
}
.row2 {
height: 100%;
}
.row:after {
content: "";
display: table;
clear: both;
}
#loaders {
background-color: #006666;
width: 14%;
padding-left: 1%;
padding-top: 1%;
}
#runWindow {
background-color: #eee;
width: 84%;
padding-left: 1%;
padding-top: 1%;
}
#title {
padding-left: 0;
padding-top: 0;
}