-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.css
More file actions
64 lines (54 loc) · 976 Bytes
/
main.css
File metadata and controls
64 lines (54 loc) · 976 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
56
57
58
59
60
61
62
63
64
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
* {
color: #fff;
font-family: 'Press Start 2P';
font-size: 20px;
line-height: 25px;
margin: 0;
overflow: hidden;
padding: 0;
text-align: center;
text-decoration: none;
transition: 0.25s;
}
html,
body {
background-color: black;
height: 100%;
width: 100%;
}
.contain {
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
opacity: 0;
position: fixed;
top: 20px; bottom: 20px; left: 20px; right: 20px;
visibility: hidden;
}
canvas {
border-radius: 10px;
}
h1 {
font-size: 50px;
line-height: 62.5px;
margin-bottom: 50px;
}
button {
background: none;
border: 2.5px solid white;
padding: 10px;
}
button:hover {
transform: scale(1.05);
}
button:active {
transform: scale(0.95);
}
p {
margin-top: 50px;
}
a:hover {
color: #ff0;
}