-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (48 loc) · 1013 Bytes
/
style.css
File metadata and controls
53 lines (48 loc) · 1013 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
52
53
body {
overflow: hidden;
min-height: 100vh;
cursor: crosshair;
}
h3 {
font-size: 10rem;
text-align: center;
margin-top: 20px;
color: rgba(128, 128, 128, 0.5);
}
p {
display: flex;
justify-content: center;
align-items: center;
font-size: 3rem;
transition: all 0.5s;
-webkit-transition: all;
-moz-transition: all;
-ms-transition: all;
-o-transition: all;
}
.bubble {
position: absolute;
border-radius: 300px;
-webkit-border-radius: 300px;
-moz-border-radius: 300px;
-ms-border-radius: 300px;
-o-border-radius: 300px;
background: rgba(255, 166, 0, 0.6);
opacity: 0;
animation: anim 8s;
-webkit-animation: anim 8s forwards;
filter: hue-rotate(0deg);
-webkit-filter: hue-rotate(0deg);
}
.pause {
color: #7f7f7f;
}
@keyframes anim {
to {
top: -250px;
left: var(--left);
opacity: 1;
filter: hue-rotate(720deg);
-webkit-filter: hue-rotate(720deg);
}
}