-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
68 lines (68 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/moon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Moon Lunar Phase</title>
<style>
body {
font-family: "Roboto", "Helvetica", "sans-serif";
margin: 50px auto;
}
table {
margin: 50px auto;
}
td:first-child {
width: 150px;
}
td:nth-child(2) {
font-family: "Courier", "Menlo", "Consolas", "Monaco", "monospace";
text-align: right;
}
</style>
</head>
<body>
<main>
<table>
<tr>
<td>julianDay</td>
<td><span id="julianDay" /></td>
</tr>
<tr>
<td>lunarAge</td>
<td><span id="lunarAge" /></td>
</tr>
<tr>
<td>lunarAgePercent</td>
<td><span id="lunarAgePercent" /></td>
</tr>
<tr>
<td>lunarPhase</td>
<td><span id="lunarPhase"></span></td>
</tr>
<tr>
<td>lunarPhaseEmoji</td>
<td><span id="lunarPhaseEmoji"></span></td>
</tr>
<tr>
<td>lunationNumber</td>
<td><span id="lunationNumber"></span></td>
</tr>
<tr>
<td>lunarDistance</td>
<td><span id="lunarDistance"></span></td>
</tr>
<tr>
<td>isWaning</td>
<td><span id="isWaning"></span></td>
</tr>
<tr>
<td>isWaxing</td>
<td><span id="isWaxing"></span></td>
</tr>
</table>
</main>
<script type="module" src="/index.js"></script>
</body>
</html>