-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (86 loc) · 1.56 KB
/
style.css
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
html,
body {
width: 100%;
height: 100%;
margin: auto 0;
font-family: "Ubuntu", sans-serif;
background-color: black;
}
header {
background-color: black;
color: black;
height: 10%;
width: 100%;
font-size: 30px;
line-height: 100px;
margin-right: 10px;
text-align: right;
}
.score {
width: 210px;
height: 583px;
float: left;
text-align: center;
font-size: 100px;
line-height: 0px;
position: relative;
top: 177px;
background-image: url("fire.gif");
background-repeat: no-repeat;
background-size: 100%;
}
.score2 {
width: 210px;
height: 583px;
float: left;
text-align: center;
font-size: 80px;
line-height: 0px;
position: relative;
top: 177px;
background-image: url("fire.gif");
background-repeat: no-repeat;
background-size: 100%;
}
canvas#gameCanvas {
float: left;
}
p {
margin: auto 0;
margin-top: 74.5px;
}
.opvulling {
background-color: #0b0b0f;
position: relative;
bottom: 177px;
width: 100%;
height: 177px;
}
#humanscore {
color: white;
}
#botscore {
color: white;
}
.particle {
width: 15px;
height: 15px;
border-radius: 5%;
transform: translate(-50%, -50%);
z-index: 111111;
position: absolute;
background: red;
animation: fade-out 1s ease;
}
@keyframes fade-out {
from{
opacity: 1;
background: #e79a0b;
transform: translate(-50%, -50%) rotate(0deg)
}
to{
opacity: 1;
background: #d64700;
transform: translate(-50%, -50%) rotate(360deg) scale(1.2)
}
}