Feed test

This commit is contained in:
2026-03-19 16:15:19 +01:00
parent f1e3320ce0
commit 1af6ae3854
16 changed files with 946 additions and 1 deletions

View File

@@ -111,7 +111,7 @@ body {
right: 0;
z-index: 1001;
border-bottom: 3px solid var(--accent-orange);
overflow: hidden;
overflow: visible;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
@@ -373,6 +373,94 @@ body {
width: 100%;
}
/* Nav Dropdown */
.nav-dropdown {
position: relative;
}
.nav-dropdown .nav-link {
display: flex;
align-items: center;
gap: 5px;
}
.nav-dropdown .nav-link .dropdown-arrow {
display: inline-block;
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 5px solid currentColor;
transition: transform 0.3s ease;
margin-top: 2px;
}
.nav-dropdown:hover .nav-link .dropdown-arrow {
transform: rotate(180deg);
}
.dropdown-menu {
position: absolute;
top: calc(100% + 8px);
left: 50%;
transform: translateX(-50%);
background: var(--primary-dark);
border: 1px solid rgba(235, 235, 222, 0.15);
border-radius: 12px;
padding: 8px 0;
min-width: 180px;
opacity: 0;
visibility: hidden;
transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
transform: translateX(-50%) translateY(8px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
z-index: 1002;
}
.dropdown-menu::before {
content: '';
position: absolute;
top: -6px;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid var(--primary-dark);
}
.dropdown-menu::after {
content: '';
position: absolute;
top: -12px;
left: 0;
right: 0;
height: 12px;
}
.nav-dropdown:hover .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0);
}
.dropdown-menu .dropdown-item {
display: block;
padding: 10px 20px;
color: var(--primary-light);
text-decoration: none;
font-size: 15px;
font-weight: 500;
transition: background 0.2s ease, color 0.2s ease;
white-space: nowrap;
}
.dropdown-menu .dropdown-item:hover {
background: rgba(235, 235, 222, 0.1);
color: var(--accent-orange);
}
.logo-link {
text-decoration: none;
display: flex;