diff options
| author | Bobby <[email protected]> | 2022-12-01 02:16:02 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-12-01 02:16:02 -0500 |
| commit | 0328d3087cc3db49428f8c87170ff03b894f98ad (patch) | |
| tree | a1976bfd6722adb452d9166f122b5642894d3efb /static/css/main.css | |
| parent | 57a1b08473a172e53ee19cacfc4d8b17eb77bdad (diff) | |
| download | thatcomputerscientist-0328d3087cc3db49428f8c87170ff03b894f98ad.tar.xz thatcomputerscientist-0328d3087cc3db49428f8c87170ff03b894f98ad.zip | |
Fix Rendering Issues on Older Browsers
Diffstat (limited to 'static/css/main.css')
| -rw-r--r-- | static/css/main.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/static/css/main.css b/static/css/main.css index cf7ed98b..4e5df555 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -249,8 +249,9 @@ summary { display: inline-block; padding: 5px 10px; cursor: pointer; - background-color: #06022c; + background: #06022c; color: #8693e1; + margin: 0 5px; } .page-disabled { @@ -260,10 +261,14 @@ summary { .page-active { color: #fff; - background-color: #000; + background: #000; text-decoration: none; } +.page-separator { + border-right: 1px solid #aaa; +} + .label { width: 100%; display: inline-block; |
