Compare commits

...

2 commits

Author SHA1 Message Date
8153caea03 add stream button 2024-09-24 16:33:50 +02:00
b2e465abc4 refactor main nav 2024-09-24 16:28:54 +02:00
3 changed files with 30 additions and 6 deletions

View file

@ -30,7 +30,7 @@ header {
margin-left: 1.9rem; margin-left: 1.9rem;
} }
#mainNav a { .nav-item {
position: relative; position: relative;
font-size: 16px; font-size: 16px;
font-family: Aileron; font-family: Aileron;
@ -41,7 +41,7 @@ header {
text-decoration: none; text-decoration: none;
} }
#mainNav a::after { .nav-item::after {
content: ""; content: "";
position: absolute; position: absolute;
background: var(--color-primary); background: var(--color-primary);
@ -53,7 +53,26 @@ header {
transition: opacity .3s ease-out; transition: opacity .3s ease-out;
} }
#mainNav a:hover::after, .nav-item:hover::after,
#mainNav .nav-active a::after { .nav-item.active::after {
opacity: 1; opacity: 1;
} }
.nav-item-stream {
padding: .75rem 1.4rem;
border: 2px solid var(--color-primary);
border-radius: 3rem;
color: var(--color-primary);
font-family: Aileron;
font-weight: 500;
letter-spacing: 2px;
text-decoration: none;
text-transform: uppercase;
transition: .2s ease-out;
transition-property: color, background-color;
}
.nav-item-stream:hover {
color: var(--color-livestream-active);
background-color: var(--color-primary);
}

View file

@ -7,10 +7,14 @@
{% set navPages = collections.mainNav | pageLang | eleventyNavigation %} {% set navPages = collections.mainNav | pageLang | eleventyNavigation %}
<ul> <ul>
{%- for entry in navPages -%} {%- for entry in navPages -%}
<li{% if entry.url == page.url %} class="nav-active"{% endif %}> <li>
<a href="{{ entry.url }}">{{ entry.title }}</a> <a class="nav-item {%- if entry.url == page.url %} active{% endif %}"
href="{{ entry.url }}">{{ entry.title }}</a>
</li> </li>
{%- endfor %} {%- endfor %}
<li>
<a class="nav-item-stream" href="https://stream.ifsr.de/" target="_blank" rel="noopener">Stream</a>
</li>
</ul> </ul>
</nav> </nav>
</div> </div>

View file

@ -66,5 +66,6 @@ p {
--page-width: 1280px; --page-width: 1280px;
--color-text: #495057; --color-text: #495057;
--color-primary: {{ eseColor }}; --color-primary: {{ eseColor }};
--color-livestream-active: #fff;
} }