forked from Jeryhardianto/GerhanaMatahari
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (66 loc) · 1.48 KB
/
style.css
File metadata and controls
73 lines (66 loc) · 1.48 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
* {
margin-top: 500px;
padding: 0px;
box-sizing: border-box;
}
body {
animation: Back 10s linear infinite;
}
.eclipse {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -500%);
width: 150px;
height: 150px;
}
.eclipse .sun {
position: absolute;
width: 100%;
height: 100%;
background: #ffad00;
border-radius: 50%;
box-shadow: 0px 0px 50px 4px #ffad00;
margin-top: 150px;
margin-right: 150px;
animation: sun 16s ease-in-out infinite;
}
.eclipse .moon {
position: absolute;
/* top: 50%;
left: 50%; */
width: 150px;
height: 150px;
background: #fff;
border-radius: 50%;
margin-top: 150px;
margin-left: 0px;
animation: moveMoon 10s linear infinite;
}
@keyframes moveMoon {
0% {
transform: translateX(200px);
background: #fff;
}
50% {
transform: translateX(0px);
background: #fff;
}
100% {
transform: translateX(-200px);
}
}
@keyframes Back {
0%,
100% {
background: #fff;
}
50% {
background: rgb(0, 0, 0);
}
}
@keyframes sun {
50% {
box-shadow: 0px 0px 20px 4px #ffad00;
}
}