-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (54 loc) · 886 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
@font-face {
font-family: 'tty';
src: url('glass_tty_vt220.ttf');
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: tty;
}
#content {
display: none;
}
body {
background-color: #0f0e0f;
color: papayawhip;
}
audio {
position: fixed;
bottom: 0;
width: 100%;
padding-top: 15px;
}
h3 {
padding-left: 3px;
font-size: 2.2em;
}
h4 {
padding-left: 3px;
text-decoration: underline;
}
#data {
width: 100%;
min-height: 300px;
font-size: 1.5em;
margin: 0 auto;
margin-bottom: 100px;
}
progress {
-moz-orient: vertical;
border: 0;
background: transparent;
transition: width 0.1s;
height: 350px;
width: 20px;
}
#welcome {
width: 100%;
background-color: #050505;
padding-left: 3px;
font-size: 1.3em;
margin-bottom: 10px;
padding-top: 9px;
}