blob: 76a9cc54b88832c52e26486e05a6ee426d929945 (
plain) (
blame)
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
|
html, body {
overflow: hidden;
margin: 0;
font-family: 'Space Mono', monospace;
background-color: #0c0c1c;
height: 100%;
width: 100%;
}
/*
Background
*/
canvas {
display: block;
vertical-align: bottom;
}
.starBackground {
position: absolute;
z-index: 1;
width: 100%;
height: 100%;
}
/*
Content
*/
.contentWrapper {
position: relative;
height: 100%;
width: 100%;
}
.content {
position: absolute;
text-align: center;
color: #fff;
font-size: 2vh;
max-width: 85%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@media only screen and (max-width: 600px) {
.content {
width: 95%;
}
}
@media only screen and (max-width: 400px) {
.content {
font-size: 1.5vh;
}
}
|