-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
103 lines (81 loc) · 1.29 KB
/
index.css
File metadata and controls
103 lines (81 loc) · 1.29 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
* {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
box-sizing: border-box;
}
html {
width: 100%;
height: 100%;
}
body {
width: 100%;
height: 100%;
margin: 0;
background-color: #606060;
}
h2 {
margin: 0;
}
canvas {
width: 100%;
height: 100%;
shape-rendering: geometricPrecision;
image-rendering: pixelated;
text-rendering: optimizeLegibility;
}
.UI {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: absolute;
left: 0;
top: 0;
text-align: center;
transition: all 1s;
}
.UI span {
font-weight: bolder;
font-size: larger;
}
.UI button {
width: 15%;
height: 8%;
border: none;
border-radius: 10px;
background-color: #3f3f3f;
font-size: larger;
font-weight: bold;
transition: 1s all;
}
.UI button:hover {
cursor: pointer;
background-color: #303030;
}
.DeathScreen {
display: none;
}
.RoundScreen {
display: none;
filter: blur(0);
opacity: 1;
}
.Blur {
display: flex;
opacity: 0;
filter: blur(10px);
}
.Hide {
display: none;
}
.Show {
display: flex;
}
img {
display: none;
}
ul {
text-align: left;
font-size: large;
}