Skip to content
Snippets Groups Projects
Commit 5176bb88 authored by Jan Frenzel's avatar Jan Frenzel
Browse files

Merge branch...

Merge branch '244-suggestion-to-change-the-color-of-active-node-in-navigation-sidebar' into 'preview'

add background to active nav element

Closes #244

See merge request !476
parents c8e26712 2bd9d637
No related branches found
No related tags found
2 merge requests!478Automated merge from preview to main,!476add background to active nav element
/* general */ /* general */
@font-face { @font-face {
font-family: "Open Sans Regular"; font-family: "Open Sans Regular";
src: src:
local('Open Sans Regular'), local('Open Sans Regular'),
url('./Open_Sans/OpenSans-Regular-webfont.woff') format('woff') url('./Open_Sans/OpenSans-Regular-webfont.woff') format('woff')
} }
@font-face { @font-face {
font-family: "Open Sans Semibold"; font-family: "Open Sans Semibold";
src: src:
local('Open Sans Semibold'), local('Open Sans Semibold'),
url('./Open_Sans/OpenSans-Semibold-webfont.woff') format('woff') url('./Open_Sans/OpenSans-Semibold-webfont.woff') format('woff')
} }
/* /*
change colors via "css color variables" change colors via "css color variables"
https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/#custom-colors https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/#custom-colors
*/ */
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
--md-primary-fg-color: rgb(0, 37, 87); --md-primary-fg-color: rgb(0, 37, 87);
--md-primary-fg-color--light: rgb(39, 66, 117); --md-primary-fg-color--light: rgb(39, 66, 117);
--md-footer-bg-color: rgb(0, 37, 87); --md-footer-bg-color: rgb(0, 37, 87);
--tud-blue-20: rgb(191, 201, 215); --tud-blue-20: rgb(191, 201, 215);
--tud-blue-10: rgb(207, 214, 225); --tud-blue-10: rgb(207, 214, 225);
--ms-blue: rgb(233, 237, 242); --ms-blue: rgb(233, 237, 242);
...@@ -38,10 +38,10 @@ ...@@ -38,10 +38,10 @@
--fg-color--light: rgba(0, 0, 0, 0.6); --fg-color--light: rgba(0, 0, 0, 0.6);
} }
.md-typeset h1, .md-typeset h1,
.md-typeset h2, .md-typeset h2,
.md-typeset h3, .md-typeset h3,
.md-typeset h4, .md-typeset h4,
.md-typeset h5 { .md-typeset h5 {
font-family: 'Open Sans Semibold'; font-family: 'Open Sans Semibold';
line-height: 130%; line-height: 130%;
...@@ -97,12 +97,10 @@ strong { ...@@ -97,12 +97,10 @@ strong {
/* admonitions */ /* admonitions */
.md-typeset code { .md-typeset code {
word-break: normal; word-break: normal;
#background-color: var(--grey-75);
#background-color: var(--tud-blue-10);
background-color: var(--ms-blue); background-color: var(--ms-blue);
} }
* { * {
--md-code-hl-comment-color: var(--fg-color--light); --md-code-hl-comment-color: var(--fg-color--light);
} }
...@@ -122,11 +120,11 @@ strong { ...@@ -122,11 +120,11 @@ strong {
} }
@media screen and (min-width: 76.25rem) { @media screen and (min-width: 76.25rem) {
.md-header, .md-header,
.md-header__title, .md-header__title,
.md-header__button, .md-header__button,
.md-header__topic { .md-header__topic {
height: 80px; height: 80px;
} }
.md-header__button, .md-header__button,
.md-header__button.md-logo, .md-header__button.md-logo,
...@@ -145,7 +143,7 @@ strong { ...@@ -145,7 +143,7 @@ strong {
.md-header__topic{ .md-header__topic{
padding: 0 30px; padding: 0 30px;
background-color: var(--md-primary-fg-color--light); background-color: var(--md-primary-fg-color--light);
} }
.md-header__topic *, .md-header__topic *,
...@@ -171,20 +169,26 @@ strong { ...@@ -171,20 +169,26 @@ strong {
height: 36px; height: 36px;
width: 125px; width: 125px;
} }
/* navbar */
.md-nav__link--active{
background-color: var(--tud-blue-10);
color: inherit;
border-radius: 5px;
padding: 0.2em 0.5em;
}
/* toc */ /* toc */
/* operation-status */ /* operation-status */
.operation-status-logo { .operation-status-logo {
width: 0.5rem; width: 0.5rem;
} }
hr.solid { hr.solid {
border-top: 2px solid #bbb; border-top: 2px solid #bbb;
} }
p { p {
padding: 0 0.6rem; padding: 0 0.6rem;
margin: 0.2em; margin: 0.2em;
} }
/* main */ /* main */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment