Give me a random...
From 1a29f5193e87234537ef52e8ae14eefe8ca2e4d2 Mon Sep 17 00:00:00 2001 From: Ashwini Gurbaxani <98401812+gurbaxani@users.noreply.github.com> Date: Sun, 15 Sep 2024 10:03:09 +0530 Subject: [PATCH] Add start and stop functionality for timer --- README.md | 1 + index.html | 22 ++++++++- script.js | 141 +++++++++++++++++++++++++++++++++++++---------------- 3 files changed, 121 insertions(+), 43 deletions(-) diff --git a/README.md b/README.md index 14c2bcd..a73b0fc 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ ### Todo [ ] Add favicon [ ] Add link to google form +[ ] Add timer diff --git a/index.html b/index.html index 2b99623..e2059cb 100644 --- a/index.html +++ b/index.html @@ -11,10 +11,28 @@ font-size: 1.5em; font-weight: bold; } + .timer-container { + display: flex; + align-items: center; + margin-bottom: 20px; + } + .timer-display { + font-size: 1.5em; + margin-left: 20px; + margin-right: 20px; + } + .nav-button { + margin: 5px; + }
-Give me a random...