Compare commits

..

2 Commits

Author SHA1 Message Date
Daniel Maslowski
06d3873860 menu: rename Logbuch -> Blog to fit all viewports 2025-01-05 19:06:17 +01:00
Daniel Maslowski
fcc33ad994 switch to mobile menu on viewports up to 1024px already 2025-01-05 19:04:53 +01:00
3 changed files with 13 additions and 17 deletions

View File

@ -15,7 +15,7 @@
<ul class="nav navbar-nav">
<li><a href="/">Home</a></li>
<li class="divider-vertical"></li>
<li><a href="/blog/">Logbuch</a></li>
<li><a href="/blog/">Blog</a></li>
<li class="divider-vertical"></li>
<li><a href="/about.html">&Uuml;ber uns</a></li>
<!-- <li class="divider-vertical"></li>

View File

@ -1,11 +0,0 @@
---
layout: post
title: "Hack im Pott 6"
date: 2025-01-09 18:28:44
---
HIP HIP Hurra! Wir freuen uns, dieses Jahr vom **28. Februar - 02. März** die siebte Hack im Pott ausrichten zu können. Die Veranstaltung wird in den Räumen des **WIR-Haus in Wülfrath** in Kooperation mit dem Freifunk im Neanderland e.V. stattfinden, der uns Infrastruktur und Räumlichkeiten bereitstellt.
Impressionen findet ihr in unserem Logbuch von der [HIP4](https://chaospott.de/2020/03/22/hip4.html) und [HIP5](https://chaospott.de/2024/04/26/hip5.html), sowie in unserem [Podcast](https://podcast.chaospott.de/2018/02/24/sn014-hip2-hack-im-pott/).
Weitere Informationen findet ihr unter [hackimpott.de](https://hackimpott.de). Wir freuen uns auf viele Hipster.

View File

@ -142,22 +142,29 @@ ul.nav>li>a {
border-left-color: #111111;
}
@media (max-width: 767px) {
@media (max-width: 1023px) {
#large-header {
display: none;
}
nav .container {
width: 100%;
margin: 0;
}
.navbar-header {
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
float: unset !important;
}
.navbar-brand {
display: block;
}
.navbar-collapse .nav>.divider-vertical {
display: none;
.navbar-collapse.collapse {
display: none !important;
}
button.navbar-toggle {
display: block;
}
}
@media (min-width: 768px) {
@media (min-width: 1024px) {
.navbar-brand {
display: none;
}