Files
appServerPortalUI/public/style.css
2026-03-23 07:25:13 +01:00

75 lines
1.2 KiB
CSS
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
* {
box-sizing: border-box;
font-family: system-ui, sans-serif;
}
body {
margin: 0;
background: #f5f6f8;
}
header {
height: 48px;
display: flex;
align-items: center;
gap: 16px;
padding: 0 20px;
backdrop-filter: blur(6px);
background: rgba(0,0,0,0.35);
/* NEU hochwertiger Shadow */
box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}
.logo {
font-weight: bold;
}
nav button {
background: transparent;
border: none;
color: white;
cursor: pointer;
padding: 8px 12px;
}
nav button:hover {
background: rgba(255,255,255,0.15);
border-radius: 6px;
}
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 {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 20px;
margin-top: 40px;
}
.service-card {
background: white;
padding: 20px;
border-radius: 10px;
cursor: pointer;
box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}