This commit is contained in:
chk
2026-03-23 07:25:13 +01:00
parent 072693d57e
commit 6eaa60131b
3 changed files with 30 additions and 15 deletions

View File

@@ -8,20 +8,18 @@ body {
background: #f5f6f8;
}
header {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 64px;
height: 48px;
display: flex;
align-items: center;
gap: 20px;
padding: 0 24px;
gap: 16px;
padding: 0 20px;
backdrop-filter: blur(6px);
background: rgba(0,0,0,0.35);
color: white;
z-index: 1000;
/* NEU hochwertiger Shadow */
box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}
.logo {
@@ -41,8 +39,23 @@ nav button:hover {
border-radius: 6px;
}
main {
padding: 80px 4px;
main {
background: transparent; /* NEU */
}
iframe {
border: none;
display: block;
width: 100%;
height: calc(100vh - 48px); /* exakt der Bereich unter dem Header */
}
nav button.active {
background: rgba(255,255,255,0.35);
border-radius: 6px;
}
#service-grid {