Initial timer commit

This commit is contained in:
2026-03-13 23:27:09 +10:00
commit 3979a0f68e
7 changed files with 389 additions and 0 deletions

26
index.html Normal file
View File

@@ -0,0 +1,26 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link href='https://fonts.googleapis.com/css?family=Inter' rel='stylesheet'>
<link rel="stylesheet" href="timer.css" />
<script src="timer.js"></script>
<title>Croccy Timer</title>
</head>
<body style="background-color: #1A1A1A;">
<div class="timer-box">
<div class="timer-bg">
<div class="timer-time">
<span class="timer-time">00:00</span>
</div>
<div class="timer-details">
<span class="timer-details-stage">
<span class="timer-details-stage-text">BREAK</span>
</span>
<span class="timer-details-block">
10/12
</span>
</div>
</div>
</body>
</html>