-
Notifications
You must be signed in to change notification settings - Fork 0
/
sunrise.css
74 lines (69 loc) · 996 Bytes
/
sunrise.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
66
67
68
69
70
71
72
73
74
body{
margin: 0;
padding: 0;
}
.wrapper{
width: 100%;
height: 652px;
background-color: #48bcff;
display: block;
position: relative;
animation: ani-one 2s ease-in-out 1.5s forwards 1,
ani-two 5s ease-in-out 10s forwards 1;
}
.round{
background-color: #FFFF00;
width: 11%;
height: 150px;
position: absolute;
left: 80%;
top: 10%;
display: block;
border-radius: 50%;
animation: ani-three 2s ease-in-out forwards 1,
ani-four 5s ease-in-out forwards 1;
}
.wrapper-2{
position: absolute;
bottom: 0;
}
.image-area img{
width: 25%;
float: left;
}
@keyframes ani-one{
75%{
background-color: #d2c13a;
}
100%{
/*background-color: #040427;*/
background-color: #d2c13a
}
}
/*@keyframes ani-two{*/
/*0%{*/
/*background: #040427;*/
/*}*/
/*70%{*/
/*background: #d2c13a;*/
/*}*/
/*100%{*/
/*background: #d2c13a;*/
/*}*/
/*}*/
/*@keyframes ani-three{
0%{
top: 0;
}
100%{
top: 70%;
}
}*/
@keyframes ani-four{
0%{
top: 70%;
}
100%{
top: 0;
}
}