countdown/index.html
2024-04-02 19:06:11 +08:00

47 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Countdown | sup39</title>
<meta name="description" content="Countdown web page for sup39">
<meta name="author" content="sup39">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="https://res.sup39.dev/index.css">
<link rel="manifest" href="./manifest.json">
<style>
main, footer {
max-width: 480px;
margin-left: 0;
margin: auto
}
#title {
margin-inline-end: 0em;
}
#ct-root {
text-align: end;
}
#ct-root span[id] {
font-size: min(3em, 10vw);
color: #2ee5b8;
font-weight: bold;
}
</style>
<script src="./index.js"></script>
</head>
<body>
<main>
<div id="title"></div>
<div id="ct-root">
<span id="ct-sign"></span>
<span id="ct-d">0</span>
<span>d</span>
<span id="ct-h">00</span>
<span>h</span>
<span id="ct-m">00</span>
<span>m</span>
<span id="ct-s">00</span>
<span>s</span>
</div>
</main>
<footer>Source code: <a href="https://forgejo.sup39.dev/sup39/countdown">supGit/sup39/countdown</a></footer>
</body>
</html>