From b97b19873ca60758ed35439cc108ecd11fd6599a Mon Sep 17 00:00:00 2001 From: Kye Gomez Date: Sat, 15 Jun 2024 13:45:20 -0700 Subject: [PATCH] [CLENAUP] --- docs/assets/css/extra.css | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/docs/assets/css/extra.css b/docs/assets/css/extra.css index 60f0fc27..4a97bc7d 100644 --- a/docs/assets/css/extra.css +++ b/docs/assets/css/extra.css @@ -1,3 +1,26 @@ +/* Set the main background color to black */ +body { + background-color: black; + color: white; /* Ensure text is visible */ +} + +/* Set other elements you want to customize */ +.md-nav, .md-header, .md-footer { + background-color: black; +} + +.md-main__inner { + background-color: black; +} + +/* Set a secondary color (red) for specific elements */ +.md-nav__item:hover, .md-footer__inner, a { + background-color: red; + color: white; /* Ensure text is visible */ +} + +/* Further customization as needed */ + .md-typeset__table { min-width: 100%; } @@ -6,11 +29,3 @@ display: table; } -body { - background-color: black; - color: red; -} - -a { - color: red; -} \ No newline at end of file