-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathanimation.css
More file actions
61 lines (49 loc) · 810 Bytes
/
animation.css
File metadata and controls
61 lines (49 loc) · 810 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
57
58
59
60
61
@keyframes title-bar {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@keyframes grow-scale-inspiration {
100% {
scale: 1.05;
}
}
@keyframes gallery-hidden-item {
0% {
opacity: 0%;
}
3.33% {
opacity: 100%;
}
30% {
opacity: 100%;
}
33.33% {
opacity: 0%;
}
66.66% {
opacity: 0%;
}
100% {
opacity: 0%;
}
}
@keyframes grow-scale-resume-buttom {
100% {
scale: 1.1;
padding-left: 8em;
padding-right: 8em;
}
}
@keyframes switch-contrast-color {
100% {
color: var(--first-color);
background-color: var(--third-color);
}
}