-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (47 loc) · 691 Bytes
/
styles.css
File metadata and controls
55 lines (47 loc) · 691 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
51
52
53
54
55
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
overflow: hidden;
background-color: #000;
font-family: "Arial", sans-serif;
}
canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.info {
position: fixed;
bottom: 20px;
left: 20px;
color: rgba(255, 255, 255, 0.7);
z-index: 10;
pointer-events: none;
user-select: none;
text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.info h1 {
font-size: 24px;
margin-bottom: 5px;
}
.info p {
font-size: 14px;
opacity: 0.8;
}
@media (max-width: 768px) {
.info {
bottom: 10px;
left: 10px;
}
.info h1 {
font-size: 18px;
}
.info p {
font-size: 12px;
}
}