-
Notifications
You must be signed in to change notification settings - Fork 1
/
kuma.css
87 lines (78 loc) · 1.44 KB
/
kuma.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
.title-flex {
color: #ECF9FF !important;
}
.description[data-v-7d4a7f28] {
text-align: center !important;
font-size: 18px;
font-weight: 900;
color: #ECF9FF;
}
.overall-status[data-v-3bcb04ac] {
text-align: center !important;
}
body {
background-size: 400% 400%;
display: flex;
flex-direction: column;
align-items: stretch;
justify-content: space-evenly;
position: relative;
overflow-x: hidden;
}
body::before,
body::after {
content: "";
width: 60vmax;
height: 53vmax;
position: absolute;
background: rgba(255, 255, 255, 0.07);
left: -20vmin;
top: -20vmin;
animation: morph 15s linear infinite alternate, spin 20s linear infinite;
z-index: 1;
will-change: border-radius, transform;
pointer-events: none;
}
body::after {
width: 70vmin;
height: 70vmin;
left: auto;
right: -13vmin;
top: auto;
bottom: 10;
animation: morph 10s linear infinite alternate, spin 26s linear infinite reverse;
transform-origin: 20% 20%;
}
@-moz-keyframes Gradient {
0% {
background-position: 0 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0 50%
}
}
@keyframes Gradient {
0% {
background-position: 0 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0 50%
}
}
@keyframes morph {
0% {
border-radius: 100% 60% 60% 40% / 70% 30% 70% 30%; }
100% {
border-radius: 40% 60%; }
}
@keyframes spin {
to {
transform: rotate(1turn);
}
}