-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (43 loc) · 1.69 KB
/
Copy pathindex.html
File metadata and controls
49 lines (43 loc) · 1.69 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
49
<!DOCTYPE html>
<!--
Copyright (C) 2024 <https://github.com/leveled-up>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<html>
<head>
<title>LibreFocus</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css" />
</head>
<body class="focus">
<div class="container">
<header>LibreFocus <a href="https://github.com/leveled-up/librefocus" target="_blank">🛈</a></header>
<div class="progressbar">
<div class="progress"></div>
</div>
<main>
<div class="steps">
<button class="active">Pomodoro</button>
<button>Short Break</button>
<button>Long Break</button>
</div>
<div class="timer">25:00</div>
<div class="toggle">
<button class="idle" title="Space/Enter">START</button>
</div>
</main>
<div class="counter">#1</div>
<div class="step-text">Time to focus!</div>
</div>
<script src="main.js"></script>
</body>
</html>