-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (39 loc) · 2.58 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Taletimer</title>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link href="css/general/grid.css" rel="stylesheet" type="text/css">
<link href="css/general/text.css" rel="stylesheet" type="text/css">
<link href="css/general/button.css" rel="stylesheet" type="text/css">
<link href="css/specific/tenths.css" rel="stylesheet" type="text/css" title="tenths">
<link href="css/specific/no-tenths.css" rel="stylesheet" type="text/css" title="no-tenths" disabled>
<link href="css/specific/drama.css" rel="stylesheet" type="text/css" title="drama" disabled>
<link href="css/specific/party.css" rel="stylesheet" type="text/css" title="party" disabled>
<link href="https://fonts.googleapis.com/css?family=B612+Mono&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Cutive+Mono&display=swap" rel="stylesheet">
</head>
<body>
<div class="buttons">
<div class="button" name="tenths">Tenths</div>
<div class="button" name="no-tenths">No Tenths</div>
<div class="button" name="drama">Drama</div>
<div class="button" name="party">Party</div>
<a href="https://github.com/aslakhol/taletid" target="_blank">
<div class="button" id="github">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="16" height="16"><path d="M23.928 1.15C11 1.15.514 11.638.514 24.566c0 10.343 6.75 19.105 15.945 22.265 1.148.144 1.58-.574 1.58-1.15v-4.02c-6.465 1.436-7.902-3.16-7.902-3.16-1.005-2.73-2.586-3.45-2.586-3.45-2.154-1.435.144-1.435.144-1.435 2.298.144 3.59 2.442 3.59 2.442 2.156 3.59 5.46 2.586 6.753 2.01.142-1.58.86-2.585 1.435-3.16-5.17-.574-10.63-2.585-10.63-11.635 0-2.585.862-4.596 2.442-6.32-.287-.575-1.005-3.017.288-6.177 0 0 2.01-.574 6.464 2.442 1.866-.574 3.877-.718 5.888-.718 2.01 0 4.022.286 5.89.717 4.453-3.016 6.464-2.442 6.464-2.442 1.293 3.16.43 5.602.287 6.177a9.29 9.29 0 0 1 2.44 6.32c0 9.05-5.458 10.918-10.63 11.492.863.718 1.58 2.155 1.58 4.31v6.464c0 .574.432 1.292 1.58 1.15 9.338-3.16 15.946-11.924 15.946-22.266-.143-12.785-10.63-23.27-23.558-23.27z" /></svg>
</div>
<a>
</div>
<div class="container">
<div class="timer">
<span id="minutes">00</span>
<span class="punctuation">:</span>
<span id="seconds">00</span>
</div>
<span id="tenths">00</span>
</div>
<script type="module" src="js/main.js"></script>
</body>
</html>