chore(docs): Add basic CSS theme

This commit is contained in:
Kyle Gospodnetich 2024-08-28 17:30:33 -07:00
parent 208d5bef84
commit def05a92e7
2 changed files with 34 additions and 1 deletions

View File

@ -14,6 +14,7 @@ validation:
extra_css:
- stylesheets/image_sizing.css
- stylesheets/bazzite.css
theme:
name: material
custom_dir: theme_overrides
@ -36,7 +37,7 @@ theme:
name: Switch to system preference
favicon: img/favicon.svg
logo: img/logo_BW.svg
logo: img/favicon.svg
icon:
repo: fontawesome/brands/github
features:

View File

@ -0,0 +1,32 @@
@import url(https://fonts.googleapis.com/css?family=DM+Sans);
body {
--md-text-font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.md-header--shadow,
.md-tabs {
backdrop-filter: blur(10px);
background-color: rgba(38,38,38,0.95);
box-shadow: 0px 3px 8px rgba(0,0,0,0.25);
}
.md-header {
backdrop-filter: blur(10px);
background-color: rgba(38,38,38,0.95);
}
.md-footer {
display: none;
visibility: hidden;
}
.md-header__source {
padding-top: 5px;
}
.md-source {
border-radius: 15px;
background-image: linear-gradient(130deg, #0546AD 0%, #8A2BE2 100%);
box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
}