aboutsummaryrefslogtreecommitdiff
path: root/app/static/custom.css
diff options
context:
space:
mode:
authorKaran Jayachandra <mail@karanjayachandra.com>2025-07-25 16:37:37 +0200
committerKaran Jayachandra <mail@karanjayachandra.com>2025-07-25 16:37:37 +0200
commit7e480ec648941355c0373197120e81721bc57dd3 (patch)
tree6ab2b7a9faebc5707df140453cef66d95494ad4a /app/static/custom.css
parentc37b96a254c3a88582e4507ea180d63ce65c9af0 (diff)
parent38f099ae6ec7e7ae7338402a03654ee6378e4274 (diff)
Merge branch 'develop' into 'main'
Develop See merge request KaranJayachandra/match_up!19
Diffstat (limited to 'app/static/custom.css')
-rw-r--r--app/static/custom.css41
1 files changed, 28 insertions, 13 deletions
diff --git a/app/static/custom.css b/app/static/custom.css
index fafc51a..a5ca36f 100644
--- a/app/static/custom.css
+++ b/app/static/custom.css
@@ -1,19 +1,34 @@
-button, input, .select, .select select {
+button, input, select {
width: 100%;
-}
-table {
- font-size: 17.5px;
+ height: 100%;
}
td {
width: 20%;
}
-img {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
+.grid {
+ margin-top: 20px;
+ margin-bottom: 20px;
+}
+footer {
+ text-align: center;
+}
+.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: 900px) {
+ table {
+ font-size: xx-large;
+ }
+ .parent {
+ grid-template-columns: repeat(4, 1fr);
+ }
+ .timer {
+ grid-template-columns: 4fr repeat(2, 1fr);
+ }
}
-.center {
- margin: auto;
- width: 50%;
-} \ No newline at end of file