-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.html
More file actions
51 lines (46 loc) · 1.63 KB
/
Copy pathMain.html
File metadata and controls
51 lines (46 loc) · 1.63 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
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>🍅 Pomodoro Flow — Focus Timer with Daily History</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="pomodoro-card" id="appRoot">
<div class="timer-section" id="timerSection">
<div class="mode-badge" id="modeLabel">🍅 FOCUS TIME</div>
<div class="timer-display" id="timerDisplay">25:00</div>
</div>
<div class="button-group">
<button class="btn btn-primary" id="startResumeBtn">▶ Start</button>
<button class="btn btn-outline" id="pauseBtn">⏸ Pause</button>
<button class="btn btn-outline" id="resetBtn">⟳ Reset</button>
</div>
<div class="config-panel">
<div class="config-item">
<label>🍅 Focus</label>
<input type="number" id="focusMinutes" min="1" max="99" value="25" step="1">
<span>min</span>
</div>
<div class="config-item">
<label>☕ Break</label>
<input type="number" id="breakMinutes" min="1" max="99" value="5" step="1">
<span>min</span>
</div>
</div>
<div class="history-section">
<div class="history-title">
📋 Today's focus sessions
<span style="font-size: 0.7rem;">(saves automatically)</span>
</div>
<ul id="historyList" class="history-list">
<li class="empty-history">✨ No focus sessions yet. Start the timer!</li>
</ul>
</div>
</div>
<!-- aria-live region for screen reader announcements -->
<div aria-live="polite" class="sr-only" id="liveTimerAnnounce"></div>
<script src="script.js"></script>
</body>
</html>