-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (87 loc) · 1.69 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
98
99
body {
background-image: radial-gradient(circle, rgb(47, 47, 52), rgb(16, 16, 19));
background-position: center;
background-size: stretch;
background-repeat: no-repeat;
height: 97vh;
overflow: hidden;
color: white;
margin: 0;
padding: 0;
font-family:'Rubik';
user-select: none;
}
#currentScore {
color: white;
opacity: 5%;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 50vmin;
}
#stats {
position: absolute;
padding-left: 1vmin;
color: white;
padding-top: 1vmin;
font-size: 2vmin;
opacity: 50%;
pointer-events: none;
}
#missedClickDetector {
position: absolute;
height: 100%;
width: 100%;
}
#githubLink {
position: absolute;
color: white;
bottom: 0;
right: 0;
font-size: 2vmin;
text-decoration: none;
padding: .5vmin;
opacity: 20%;
}
footer {
background-color: rgb(21, 21, 21);
position: absolute;
bottom: 0;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
footer > a {
text-decoration: none;
color: white;
padding: 1vmin;
}
.goodKitty {
position: absolute;
height: 10vmin;
width: 10vmin;
border-radius: 50%;
}
.badKitty {
position: absolute;
height: 10vmin;
width: 10vmin;
border-radius: 50%;
box-shadow: 0px 0px 3vmin 0px rgba(255,0,0,0.55);
z-index: 20;
}
.hungryKitty {
position: absolute;
height: 10vmin;
width: 10vmin;
border-radius: 50%;
box-shadow: 0px 0px 8vmin 5vmin rgba(255, 210, 0, 0.40);
z-index: 20;
}
@keyframes opacityDrop {
from {opacity: 25%;}
to {opacity: 0%;}
};