diff options
| author | Karan Jayachandra <karan.jayachandra@nxp.com> | 2025-07-25 16:35:33 +0200 |
|---|---|---|
| committer | Karan Jayachandra <karan.jayachandra@nxp.com> | 2025-07-25 16:35:33 +0200 |
| commit | 38f099ae6ec7e7ae7338402a03654ee6378e4274 (patch) | |
| tree | dfb5b5f547f9200674f30174c970a3d953101c12 /app/static/custom.css | |
| parent | 63e1b52e1b76e136e6534949980d85ffe413f0c9 (diff) | |
Finally happy with the work
Diffstat (limited to 'app/static/custom.css')
| -rw-r--r-- | app/static/custom.css | 12 |
1 files changed, 10 insertions, 2 deletions
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); + } } |
