From 38f099ae6ec7e7ae7338402a03654ee6378e4274 Mon Sep 17 00:00:00 2001 From: Karan Jayachandra Date: Fri, 25 Jul 2025 16:35:33 +0200 Subject: Finally happy with the work --- app/static/custom.css | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'app/static/custom.css') diff --git a/app/static/custom.css b/app/static/custom.css index 8aa5b57..a5ca36f 100644 --- a/app/static/custom.css +++ b/app/static/custom.css @@ -12,15 +12,23 @@ td { footer { text-align: center; } -.parent { +.parent, .timer { display: grid; grid-column-gap: 20px; grid-row-gap: 20px; margin-top: 20px; margin-bottom: 20px; + grid-auto-columns: 1fr; + grid-auto-rows: 1fr; } -@media (min-width: 800px) { +@media (min-width: 900px) { + table { + font-size: xx-large; + } .parent { grid-template-columns: repeat(4, 1fr); } + .timer { + grid-template-columns: 4fr repeat(2, 1fr); + } } -- cgit v1.3.1