-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
52 lines (48 loc) · 1.14 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="color-scheme" content="dark light">
<title>Year progress bar</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
color: #444;
background-color: #EEE;
}
@media (prefers-color-scheme: dark) {
body {
color: #EEE;
background-color: #444;
}
}
h1, p {
text-align: center;
}
.progress {
background-color: lightgrey;
height: 300px;
}
@media (prefers-color-scheme: dark) {
.progress {
background-color: darkgrey;
}
}
.progress > svg {
display: block;
height: 100%;
}
#percent {
font-family: 'Courier New', Courier, monospace;
}
</style>
</head>
<body>
<h1>Year progress bar</h1>
<div class="progress" id="progress"></div>
<h1 id="percent"></h1>
<script src="progressbar.min.js"></script>
<script src="main.js"></script>
</body>
</html>