Move jv and css to own folder

This commit is contained in:
Kylian Schmidt
2025-07-08 08:14:10 +02:00
parent 71cf2031e0
commit 716e1c95fe
25 changed files with 2355 additions and 13 deletions
+31
View File
@@ -0,0 +1,31 @@
/* ========================================
RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
body {
padding: 0.5rem;
}
.grid {
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 0.8rem;
}
.sidebar {
width: 100%;
right: -100%;
}
.navigation {
gap: 0.3rem;
}
.nav-btn {
padding: 0.4rem 0.8rem;
font-size: 0.8rem;
}
.search-container {
max-width: 100%;
}
}