made logo sub-line darker

This commit is contained in:
eclipse 2025-08-20 22:19:29 +02:00
parent 6b4f961053
commit 9a6f327824
2 changed files with 8 additions and 2 deletions

View File

@ -3,14 +3,20 @@
/* add nice gradient to the header*/ /* add nice gradient to the header*/
body>header { body>header {
background-image: linear-gradient(to right, rgba(255, 239, 186, .7), var(--pico-background-color)); background-image: linear-gradient(to right, rgba(255, 239, 186, .7), var(--pico-background-color));
#logo-p {
--pico-color: var(--pico-color);
filter: brightness(75%);
}
} }
[data-theme=light], [data-theme=light],
:root:not([data-theme=dark]), :root:not([data-theme=dark]),
:host(:not([data-theme=dark])) { :host(:not([data-theme=dark])) {
/* adapt the header gradient for dark mode */ /* adapt the header gradient for light mode */
body>header { body>header {
background-image: linear-gradient(to right, #ffefba, var(--pico-background-color)); background-image: linear-gradient(to right, #ffefba, var(--pico-background-color));
filter: brightness(100%);
} }
} }

View File

@ -21,7 +21,7 @@
<a href="{{ url_for('home.startpage') }}"> <a href="{{ url_for('home.startpage') }}">
<hgroup> <hgroup>
<h2>the_works</h2> <h2>the_works</h2>
<p>Tobias seine Bücher</p> <p id="logo-p">Tobias seine Bücher</p>
</hgroup> </hgroup>
</a> </a>
</li> </li>