aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2025-12-22 18:18:56 +0000
committerAnhgelus Morhtuuzh <william@herges.fr>2025-12-22 18:18:56 +0000
commit66d6ab349196fd5d95937f533faa9db6ba65ebb3 (patch)
tree84ce7dd31c9e4dc10dbb41c5428cc2cb66bb44d9 /frontend
parent1c86bdda2a3067ade9aa765d8d87fe27151dd895 (diff)
parentc66a5cc0809875df0299ebb80be423436c195416 (diff)
Merge pull request '[Feat] Stats' (#4) from feat/stats into main
Reviewed-on: https://git.anhgelus.world/anhgelus/small-web/pulls/4
Diffstat (limited to 'frontend')
-rw-r--r--frontend/scss/general.scss35
1 files changed, 35 insertions, 0 deletions
diff --git a/frontend/scss/general.scss b/frontend/scss/general.scss
index bab3ada..28c1c81 100644
--- a/frontend/scss/general.scss
+++ b/frontend/scss/general.scss
@@ -180,3 +180,38 @@ pre {
white-space: break-spaces;
}
}
+
+table {
+ width: calc(100% + 4rem);
+
+ margin: 2rem -2rem;
+ padding: 0 1rem;
+
+ line-height: var(--line-height-smaller);
+}
+
+thead {
+ font-weight: bold;
+ font-size: 1rem;
+
+ background: var(--color-rose);
+ color: var(--color-dark);
+
+ & th {
+ padding-top: 0.25rem;
+ padding-bottom: 0.25rem;
+ }
+}
+
+tbody {
+ background: var(--color-light-rose);
+
+ font-family: monospace;
+ font-size: 0.85rem;
+}
+
+td,
+th {
+ padding-left: 0.5rem;
+ padding-right: 0.5rem;
+}