-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (97 loc) · 2.45 KB
/
index.html
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
/* background-color: black; */
background-image: url(./space.jpg);
overflow: hidden;
}
.container {
font-size: 10px;
width: 40em;
height: 40em;
position: relative;
}
.sun {
position: absolute;
top: 15em;
left: 15em;
width: 10em;
height: 10em;
background-color: orange;
border-radius: 50%;
box-shadow: 0 0 3em white;
animation: orbit 3s linear infinite;
}
.earth,
.moon {
position: absolute;
border-style: solid;
border-color: white, transparent, transparent, transparent;
border-width: 0.1em 0.1em 0 0;
border-radius: 50%;
}
.earth {
top: 5em;
left: 5em;
width: 30em;
height: 30em;
animation: orbit 36.5s linear infinite;
}
.moon {
top: 0;
right: 0;
width: 8em;
height: 8em;
animation: orbit 2.7s linear infinite;
}
.earth::before,
.moon::before {
content: '';
position: absolute;
border-radius: 50%;
}
.earth::before {
top: 2.8em;
right: 2.8em;
width: 3em;
height: 3em;
/* background-color: lightseagreen; */
}
.moon::before {
top: 0.8em;
right: 0.2em;
width: 1.2em;
height: 1.2em;
/* background-color: silver; */
}
@keyframes orbit {
to {
transform: rotate(360deg);
}
}
</style>
<body>
<div class="container">
<div class="sun">
<img src="sun.png" width="125" style="margin: -12px;"/>
</div>
<div class="earth">
<img class="earth" src="earth.png" style="margin-left: 190px; margin-top: -30px; height: 40px; width: 40px;"/>
<div class="moon">
<img class="moon" src="moon.png" style="margin-top: 55px; height: 20px; width: 20px;"/>
</div>
</div>
</div>
</body>
</html>