diff options
author | Frankie B <git@diskfloppy.me> | 2024-07-12 23:48:06 +0100 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2024-07-12 23:48:06 +0100 |
commit | 5ed8fdc83e3a720c7ef5592a48a18de4b17e623e (patch) | |
tree | ab91eb7e2fbef576f453fc3cc020f3ef4c997348 /public | |
parent | 39e4a6b590e9639d58bade332b4d3d003531ea33 (diff) |
Improve computers page, change page width to 975px to compensate for scrollbars
Diffstat (limited to 'public')
-rw-r--r-- | public/css/master.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/public/css/master.css b/public/css/master.css index 190d2a5..3fbd078 100644 --- a/public/css/master.css +++ b/public/css/master.css @@ -109,7 +109,7 @@ button:hover { div.page { /*min-width: 1000px;*/ /*max-width: 1100px;*/ - width: 1000px; + width: 975px; padding-left: 0.5em; padding-right: 0.5em; margin: auto; @@ -252,14 +252,10 @@ a:hover img.navbar-icon { /* ── Computers ───────────────────────────────────────────────────────────────────── */ table.computers { + table-layout: auto; width: 100%; } -table.computers td:first-child { - width: 350px; - text-align: center; - font-weight: bold; -} table.computers td ul { margin: 0; padding-left: 20px; @@ -280,6 +276,10 @@ table.computers th { background-color: var(--background-secondary); } +table.computers td:first-child { + white-space: nowrap; +} + table.computers td, table.computers th { border: var(--foreground) solid 1px; |