-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
64 lines (56 loc) · 1.1 KB
/
main.css
File metadata and controls
64 lines (56 loc) · 1.1 KB
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
:root {
--color: #9A68EB;
}
body {
background: var(--color);
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
height: 100vh;
}
.title {
font-size: 6rem;
margin-bottom: 1rem;
text-align: center;
font-weight: 700;
margin: 0;
}
.text {
font-family: 'K2D', 'DM Sans', sans-serif;
color: transparent;
text-shadow: 0px 20px 20px var(--color), 0 0 0 rgba(0, 0, 0, 0.25), 0px 20px 20px var(--color);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.game-button {
background: transparent;
cursor: pointer;
height: 300px;
width: 300px;
border-radius: 40px;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
border: none;
font-size: 2rem;
padding: 0;
}
.small {
font-size: 1rem;
}
.game-button:active {
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
}
.support-button {
text-decoration: none;
padding: 0.5rem 1rem;
width: fit-content;
border-radius: 12px;
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
}