header gradient

This commit is contained in:
ben7sys
2024-11-01 06:44:12 +01:00
parent 7b26b3c509
commit 2c80ae9f3c
2 changed files with 12 additions and 175 deletions

View File

@@ -4,10 +4,21 @@ header {
width: 100%;
top: 0;
z-index: 1000;
background-color: var(--bg-primary);
background: linear-gradient(to bottom,
rgba(20, 20, 20, 0.95) 0%,
var(--bg-primary) 100%
);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* Light theme gradient override */
.light-theme header {
background: linear-gradient(to bottom,
rgba(255, 255, 255, 0.95) 0%,
var(--bg-primary) 100%
);
}
.main-nav {
display: flex;
justify-content: space-between;