-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (45 loc) · 905 Bytes
/
Copy pathstyle.css
File metadata and controls
56 lines (45 loc) · 905 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
* {
margin: 0;
padding: 0;
}
body {
background-color: rgba(0, 0, 0, 0.897);
overflow: hidden;
height: 100vh;
width: 100vw;
}
#points {
width: 100%;
background-color: rgb(0, 0, 0);
color: burlywood;
font-size: 1.5em;
font-weight: bold;
padding-left: 15px;
padding-top: 15px;
text-align: center;
}
#game-over {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 0%;
left: 0%;
font-size: 3em;
flex-direction: column;
background-color: rgba(0, 0, 0, 0.897);
height: 100%;
width: 100%;
}
#game-over p {
background: -webkit-linear-gradient(315deg, #c73e1d 0%, #a23b72 37%, #2e86ab 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: bold;
}
.hidden {
visibility: hidden;
}
.show {
visibility: visible;
}