style.css
950 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
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body,
html {
margin: 0;
padding: 0;
height: 100%;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.header {
width: 100%;
height: 30px;
padding: 0 10px;
border-left: 10px solid #a3be8c;
font-size: 12px;
line-height: 30px;
color: #eff1f5;
background: #343d46;
overflow: hidden;
}
#iframe {
position: absolute;
top: 30px;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: -webkit-calc(100% - 30px);
height: -moz-calc(100% - 30px);
height: -ms-calc(100% - 30px);
height: -o-calc(100% - 30px);
height: calc(100% - 30px);
border: 0;
}
#errors {
width: 100%;
margin: 0;
padding: 10px;
font-family: monospace;
font-size: 14px;
line-height: 1.4;
color: #eff1f5;
background: #bf616a;
overflow: auto;
}
#okness {
font-weight: bold;
}