-
-
Notifications
You must be signed in to change notification settings - Fork 530
Expand file tree
/
Copy pathbreak.html
More file actions
38 lines (38 loc) · 1.39 KB
/
break.html
File metadata and controls
38 lines (38 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title data-i18next="break.title"></title>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/color-scheme.css">
<link rel="stylesheet" type="text/css" href="css/commons.css">
<link rel="stylesheet" type="text/css" href="css/break.css">
</head>
<body>
<div class="breaks">
<div>
<div class="break-idea" dir="auto"></div>
<div class="break-text" dir="auto"></div>
<progress id='progress' max="10000" aria-hidden="true"></progress>
<span id='progress-time' aria-hidden="true"></span>
</div>
<div>
<a id="postpone" class="tooltip top">
<span data-i18next="break.postpone"></span>
<img src="images/breaks/break-postpone.svg" />
<span class="tiptext"></span>
</a>
<a id="close" class="tooltip top">
<span data-i18next="break.skip"></span>
<img src="images/breaks/break-skip.svg" />
<span class="tiptext"></span>
</a>
</div>
<div>
</div>
</div>
</body>
<script type="module" src="./break-renderer.js"></script>
</html>