diff options
author | Linnnus <[email protected]> | 2024-05-02 14:52:08 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-05-02 14:54:37 +0200 |
commit | 8752590f7c1bebb5ff85725b60f9644213a8e569 (patch) | |
tree | abd44cfb12b34166561256a94fb73963543abda5 /static/styles | |
parent | 1eea06cb7fca2699160b9d8805c231c297080304 (diff) |
Use actual data for leaderboard
e407f10 and ce74a2c added a basic skelton. This patch refines some of
the styling and actually pulls data from the database.
Diffstat (limited to 'static/styles')
-rw-r--r-- | static/styles/leaderboards.css | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/static/styles/leaderboards.css b/static/styles/leaderboards.css index a7db6f8..82d7dda 100644 --- a/static/styles/leaderboards.css +++ b/static/styles/leaderboards.css @@ -1,20 +1,25 @@ -.leaderboard{ - width: 100%; +.leaderboard { + width: 80%; + margin: 0 auto; } -.top_row { +.leaderboard thead { background-color: #6e1818; text-align: left; } -.row { +.leaderboard tr { height: 50px; } -.data { +.leaderboard td { background-color: #1c1c1c; } -.wrapper { +.leaderboard td, .leaderboard th { + padding: 1rem; +} + +.center { text-align: center; -}
\ No newline at end of file +} |