Skip to content

Commit

Permalink
Create custom.css
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-logan authored Jul 21, 2024
1 parent 0c79ada commit 7e3ca86
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions docs/static/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
/*
* Didn't find much time to create a theme yet,
* so there are just a few non-default settings for now.
*/
:root,
:root[color-theme="light"] {
--header-background: #222222;
--footer-background: #e6522c;
--footer-link-color: #ffffff;
--footer-link-color-visited: #ffffff;
}

@media (prefers-color-scheme: light) {
:root {
--header-background: #222222;
--footer-background: #e6522c;
--footer-link-color: #ffffff;
--footer-link-color-visited: #ffffff;
}
}

:root[color-theme="dark"]
{
--header-background: #111c24;
--body-background: #1f1f21;
--footer-background: #e6522c;
--footer-link-color: #ffffff;
--footer-link-color-visited: #ffffff;
}

@media (prefers-color-scheme: dark) {
:root {
--header-background: #111c24;
--body-background: #1f1f21;
--footer-background: #e6522c;
--footer-link-color: #ffffff;
--footer-link-color-visited: #ffffff;
}
}

.gdoc-markdown pre,.gdoc-markdown code {
overflow: auto;
}

0 comments on commit 7e3ca86

Please sign in to comment.