-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathapp.css
More file actions
49 lines (39 loc) · 764 Bytes
/
app.css
File metadata and controls
49 lines (39 loc) · 764 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
@keyframes background-gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.background-gradient-animation {
animation: background-gradient 18s ease infinite;
}
@keyframes background-animation {
0% {
background-position: 0%;
}
50% {
background-position: 50%;
}
100% {
background-position: 100%;
}
}
@keyframes fade {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.animated-background {
animation: 1.5s 0.5s background-animation forwards, fade 1s;
}
.animated-background-reverse {
animation: 1s background-animation reverse, fade 1s reverse;
}