-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (44 loc) · 806 Bytes
/
Copy pathstyle.css
File metadata and controls
50 lines (44 loc) · 806 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
/* Code should look like a console. */
body {
width: 95vw;
margin: 2.5vh auto;
}
#outer {
width: 100%;
height: 95vh;
position: relative;
}
#canvas {
background: #333;
width: 100%;
height: 100%;
}
#errors {
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
-webkit-transform:
translateX(-50%) translateY(-50%);
white-space: pre;
font-family: sans-serif;
color: #fff;
display: none;
}
pre {
background: #000;
color: #ccc;
padding: 6pt;
width: calc(100% - 12pt);
margin: 2.5vh auto 0 auto;
display: block;
}
#license {
position: absolute;
left: 12px;
top: 12px;
color: #fff;
}
#license a {
color: #fff;
}