-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (56 loc) · 972 Bytes
/
style.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
@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Quantico);
html, body {background-color: rgb(0, 0, 0);}
p {
font-family: Monospace; color: rgb(0, 197, 43)
}
pre {
font-family: Monospace; color: rgb(0, 197, 43)
}
/* below is for the sandpit */
#container {
background: rgb(0, 0, 0);
position: absolute;
left: 50%;
top: 50%;
}
#stats {
position: absolute;
right: 10px;
top: 10px;
}
/* Info */
@keyframes show-info {
0% {
transform: rotateY(120deg);
}
100% {
transform: rotateY(0deg);
}
}
/* this is for the console text */
.hidden {
opacity: 0;
}
.console-container {
font-family: Monospace;
font-size: 1em;
text-align: center;
height: 200px;
width: 600px;
display: block;
position: absolute;
color: white;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
.console-underscore {
display: inline-block;
position: relative;
top: -0.14em;
left: 10px;
color: white;
}