feat(website): add styled Download button to navigation

This commit is contained in:
2026-05-18 08:46:24 +02:00
parent bef83100c8
commit 63937b65a2
2 changed files with 25 additions and 1 deletions
+24
View File
@@ -180,6 +180,30 @@ a {
width: 100%;
}
.nav-download {
color: var(--color-bg) !important;
background: var(--color-accent);
padding: 0.5rem 1.5rem;
border: 2px solid var(--color-accent);
font-weight: 800 !important;
letter-spacing: 0.12em;
position: relative;
overflow: hidden;
transition: all 0.3s ease !important;
}
.nav-download::after {
display: none !important;
}
.nav-download:hover {
color: var(--color-bg) !important;
background: var(--color-text);
border-color: var(--color-text);
box-shadow: 0 0 20px rgba(0, 221, 119, 0.4);
transform: scale(1.05);
}
/* ===== Hero Section ===== */
.hero {
position: relative;