Merge pull request #66 from netz39/rounded-spacestatus

Make the space status picture rounded
This commit is contained in:
David 2023-11-04 08:16:17 +01:00 committed by GitHub
commit 644cb4361d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View file

@ -17,7 +17,7 @@
<a aria-label="pull" id="pull" class="toggle" href="#">
<i class="fas fa-bars fa-lg"></i>
</a>
<!-- Menu -->
<ul class="hide">
{% assign name_page = "" %}
@ -40,7 +40,7 @@
<li><a id="theme-toggle" title="{{ page.title }} " aria-label="{{ page.title }}" onclick="themeToggle()"></a></li>
{% endif %}
<!-- Spacestatus -->
<li><a href="https://www.netz39.de/status/"><img alt="status" src="https://spaceapi.n39.eu/state.png"></a></li>
<li><a href="https://www.netz39.de/status/"><img alt="status" src="https://spaceapi.n39.eu/state.png" class="spacestatus"></a></li>
</ul>
</nav>
</header>

View file

@ -90,6 +90,13 @@ nav {
}
}
nav img.spacestatus {
border-radius: 5px;
padding: 0;
margin-left: 10px;
height: 30px;
}
/* ---- Responsive ---- */
@media (min-width: $break) {