-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (43 loc) · 841 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
@font-face {
font-family: 'Finlandica';
src: url('assets/fonts/finlandica/Finlandica-BoldItalic.ttf') format('truetype');
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
body {
overflow: hidden;
}
#canvas1 {
border: 5px solid black;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 100%;
max-height: 100%;
z-index: -1;
}
img, audio {
display: none;
}
#loading_message {
font-family: 'Finlandica';
position: absolute;
top: 50%;
width: 100%;
text-align: center;
font-size: 80px;
}
#noscript {
font-family: 'Finlandica';
position: absolute;
top: 25%;
width: 100%;
text-align: center;
font-size: 30px;
color: red;
}