forked from archishmagoli/RestaurantProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground_animation.css
65 lines (56 loc) · 906 Bytes
/
background_animation.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
body {
width: 100wh;
height: 90vh;
color: #fff;
background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
background-size: 400% 400%;
-webkit-animation: Gradient 10s ease infinite;
animation: Gradient 10s ease infinite;
}
@-webkit-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%
}
}
h1,
h6 {
font-family: 'Open Sans';
font-weight: 300;
text-align: center;
padding-top: 200px;
top: 45%;
right: 0;
left: 0;
}
#welcome_text {
color: white;
font-family: Open Sans;
font-size: 70px;
}
#login_btn {
margin-top: 100px;
margin-left: 48%;
font-size: 30px;
}
#signup_btn {
margin-top: 75px;
margin-left: 47%;
font-size: 30px;
}