diff options
| author | Karan Jayachandra <mail@karanjayachandra.com> | 2025-11-15 15:48:50 +0100 |
|---|---|---|
| committer | Karan Jayachandra <mail@karanjayachandra.com> | 2025-11-15 15:48:50 +0100 |
| commit | c0c4897f2ef9eb9ae444bc05407c3cdf420c3461 (patch) | |
| tree | 504709666f5470960c7910a77eb7808cde8074b8 /src/style.css | |
| parent | cabac66d56e8912941cef976d69a4fd3ec9ad928 (diff) | |
Trying cards instead of a table
Diffstat (limited to 'src/style.css')
| -rw-r--r-- | src/style.css | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/style.css b/src/style.css index 73550ca..cb46ed5 100644 --- a/src/style.css +++ b/src/style.css @@ -1,17 +1,18 @@ -.button-grid { +.grid-container { display: grid; - grid-template-columns: repeat(3, 1fr); + grid-template-columns: repeat(6, 1fr); grid-gap: 15px; } +.card { + height: 100%; +} #timer-display { text-align: center; - width: fit-content; -} -table { - font-size: 1.5em; + width: 100px; } + @media (max-width: 900px) { - .button-grid { + .grid-container { grid-template-columns: repeat(1, 1fr); } }
\ No newline at end of file |
