-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (43 loc) · 1.39 KB
/
index.html
File metadata and controls
48 lines (43 loc) · 1.39 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Python 2 progress bar</title>
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body, a {
color: #ffde57;
background-color: #4584b6;
}
h1, p {
text-align: center;
}
a:hover,
a:hover div {
color: #4584b6;
background-color: #ffde57;
outline: 0.05em solid #ffde57;
}
.progress {
background-color: lightgrey;
height: 300px;
}
.progress > svg {
display: block;
height: 100%;
}
</style>
</head>
<body>
<h1>Python 2 progress bar</h1>
<div class="progress" id="progress"></div>
<h1 id="percent"></h1>
<p>Python 2.7 was released on 2010-07-03 and is EOL on 2020-01-01.
<p>Inspired by <a href="https://pythonclock.org/">Python 2.7 Countdown</a>, <a href="https://hugovk.github.io/chernobyl-progress-bar/">CHERNOBYL PROGRESS BAR</a> and <a href="https://hugovk.github.io/year-progress-bar/">year progress bar</a>.
<p>See also <a href="https://python3statement.github.io/">python3statement.github.io</a>.
<script src="progressbar.min.js"></script>
<script src="main.js"></script>
</body>
</html>