-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (108 loc) · 1.71 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
html, body {
height: 100%;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
}
.osc-rot-jar {
display: inline-block;
animation: oscillate 3s infinite ease-in-out;
}
.osc-rot-jar img {
width: 150px;
height: 150px;
image-rendering: pixelated;
}
.counter {
font-size: 3em;
font-family: monospace;
transform: translateY(-300px);
}
.counter .Cvalue {
font-size: 3em;
font-family: monospace;
transform: translateY(-300px);
}
.text {
font-size: 4em;
transform: translateY(20px);
font-family: Arial, monospace;
}
.subtext {
font-size: 2.5;
transform: translateY(25px);
font-family: consolas;
}
.hyperclick {
font-size: 2;
font-family: monospace;
transform: translateY(-305px);
}
.hyperclick .Hvalue {
font-size: 2;
font-family: monospace;
transform: translateY(-305px);
}
.pop {
animation: bucketPop 0.1s ease-in-out;
}
.fade-out {
animation: fadeOut 0.5s forwards;
}
.fade-in {
animation: fadeIn 0.5s forwards;
}
.like-pop {
position: absolute;
color: black;
font-size: 2em;
font-family: Arial, sans-serif;
user-select: none;
animation: fadeMoveUp 1s ease-in-out forwards;
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeMoveUp {
0% {
opacity: 1;
transform: translateY(0) scale(1);
}
100% {
opacity: 0;
transform: translateY(-30px);
}
}
@keyframes oscillate {
0%, 100% {
transform: rotate(20deg);
}
50% {
transform: rotate(-20deg);
}
}
@keyframes bucketPop {
0% {
transform: scale(100%);
}
50% {
transform: scale(105%);
}
100% {
transform: scale(100%);
}
}