-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (79 loc) · 1.18 KB
/
style.css
File metadata and controls
83 lines (79 loc) · 1.18 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
* {
padding: 0;
margin: 0;
overflow: hidden;
}
#sun {
height: 100px;
width: 100px;
border-radius: 50px;
position: absolute;
top: 0;
left: 40%;
animation: sunrise 20s;
}
#sky {
position: absolute;
width: 100%;
height: 40%;
background-color: #6e44ff;
animation: sky 25s;
}
#grass {
background-color: #007200;
height: 60%;
width: 100%;
bottom: 0;
position: absolute;
}
@keyframes sunrise {
0% {
top: 90%;
left: 0;
background-color: #fca311;
}
30% {
top: 0;
left: 25%;
background-color: #ffec01;
}
70% {
top: 0;
left: 75%;
background-color: #ffba08;
}
100% {
top: 90%;
left: 100%;
background-color: #f3722c;
}
}
@keyframes sky {
0% {
background-color: #6e44ff;
}
10% {
background-color: #bdb2ff;
}
20% {
background-color: #cee9fc;
}
30% {
background-color: #f2c8ff;
}
60% {
background-color: #597eaa;
}
70% {
background-color: #556f7a;
}
80% {
background-color: #2e6171;
}
90% {
background-color: #495057;
}
100% {
background-color: #22223b;
}
}