-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
53 lines (51 loc) · 907 Bytes
/
index.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
#app {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
/*Moving background*/
body {
width: 100vw;
height: 100vh;
background: linear-gradient(
-45deg,
#f35c9d,
#ffdf00,
#ff653a,
#f35c9d,
#ffdf00
);
background-size: 400% 400%;
margin: 0;
overflow: hidden;
animation: movingBkg 14s linear infinite;
-moz-animation: movingBkg 14s linear infinite;
-webkit-animation: movingBkg 14s linear infinite;
}
@keyframes movingBkg {
0% {
background-position: top left;
}
100% {
background-position: right bottom;
}
}
@-moz-keyframes movingBkg {
0% {
background-position: top left;
}
100% {
background-position: right bottom;
}
}
@-webkit-keyframes movingBkg {
0% {
background-position: top left;
}
100% {
background-position: right bottom;
}
}