-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeyframes.css
More file actions
56 lines (43 loc) 路 898 Bytes
/
Copy pathkeyframes.css
File metadata and controls
56 lines (43 loc) 路 898 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
54
55
56
@keyframes bodyBackgroundAnimation {
0% {
background-color: rgb(36, 164, 164);
}
10% {
background-color: rgb(106, 38, 151);
}
20% {
background-color: rgb(197, 109, 80);
}
30% {
background-color: rgb(140, 58, 96);
}
40% {
background-color: rgb(95, 173, 131);
}
50% {
background-color: rgb(70, 77, 89);
}
60% {
background-color: rgb(203, 135, 114);
}
70% {
background-color: rgb(82, 101, 155);
}
80% {
background-color: rgb(222, 135, 242);
}
90% {
background-color: rgb(5, 126, 142);
}
100% {
background-color: rgb(78, 41, 62);
}
}
@keyframes btnRotate {
from {
transform: scale(0.8, 0.8);
}
to {
transform: scale(1, 1);
}
}