-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathmain.css
More file actions
69 lines (67 loc) · 1.27 KB
/
main.css
File metadata and controls
69 lines (67 loc) · 1.27 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
body {
margin: 0;
}
.center {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%) scale(4, 4);
width: 10%;
height: 8%;
}
#clickMeText {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%) scale(0.5, 0.5);
pointer-events: none;
text-wrap: nowrap;
user-select: none;
-webkit-user-select: none;
}
#critImg {
opacity: 0;
position: absolute;
height: 100%;
width: 100%;
object-fit: cover;
}
#contrib {
visibility: hidden;
position: absolute;
left: 50%;
top: 30%;
transform: translate(-50%, -50%);
}
#popup {
visibility: hidden;
position: absolute;
left: 10px;
top: 10px;
width: 100px;
height: 100px;
}
#popupText {
display: inline-block;
white-space: nowrap;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-25%, -50%);
font-size: 48px;
user-select: none;
}
.customCursor {
cursor: url("peach-emoji.png"), auto;
}
#clickMeText.rotateText {
animation: spinInPlace 0.6s linear infinite;
}
@keyframes spinInPlace {
0% {
transform: translate(-50%, -50%) scale(0.5, 0.5) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) scale(0.5, 0.5) rotate(360deg);
}
}