Verbesserte Standardansicht mit subtilen Hintergründen
Entfernung der dimensionalen Effekte im Normalzustand Beibehaltung der bewährten Hover-Effekte Konsistentes Design zwischen Header und Footer
This commit is contained in:
@@ -35,13 +35,18 @@ footer {
|
||||
}
|
||||
|
||||
.contact-item a {
|
||||
color: var(--text-muted);
|
||||
color: var(--text);
|
||||
text-decoration: none;
|
||||
transition: color var(--transition-speed) ease;
|
||||
transition: all 0.3s ease;
|
||||
padding: 0.3rem 0.5rem;
|
||||
border-radius: var(--border-radius);
|
||||
background-color: rgba(var(--bg-hover-rgb), 0.4);
|
||||
}
|
||||
|
||||
.contact-item a:hover {
|
||||
color: var(--primary);
|
||||
background-color: var(--bg-card);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.contact-item:hover .signal-icon {
|
||||
@@ -55,29 +60,59 @@ footer {
|
||||
}
|
||||
|
||||
.social-links a {
|
||||
color: var(--text-muted);
|
||||
color: var(--text);
|
||||
text-decoration: none;
|
||||
transition: color var(--transition-speed) ease;
|
||||
transition: all 0.3s ease;
|
||||
padding: 0.5rem;
|
||||
border-radius: var(--border-radius);
|
||||
font-size: 1.5rem;
|
||||
background-color: rgba(var(--bg-hover-rgb), 0.4);
|
||||
}
|
||||
|
||||
.social-links a:hover {
|
||||
color: var(--primary);
|
||||
background-color: var(--bg-card);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.legal-links {
|
||||
text-align: center;
|
||||
font-size: 0.9rem;
|
||||
font-size: 0.95rem;
|
||||
color: var(--text-muted);
|
||||
padding-top: var(--spacing-md);
|
||||
}
|
||||
|
||||
.legal-links a {
|
||||
color: var(--text-muted);
|
||||
color: var(--text);
|
||||
text-decoration: none;
|
||||
margin: 0 var(--spacing-sm);
|
||||
transition: color var(--transition-speed) ease;
|
||||
transition: all 0.3s ease;
|
||||
padding: 0.4rem 0.8rem;
|
||||
border-radius: var(--border-radius);
|
||||
position: relative;
|
||||
background-color: rgba(var(--bg-hover-rgb), 0.4);
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.2px;
|
||||
}
|
||||
|
||||
.legal-links a::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
background-color: var(--primary);
|
||||
transition: all 0.3s ease;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.legal-links a:hover {
|
||||
color: var(--primary);
|
||||
background-color: var(--bg-card);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.legal-links a:hover::after {
|
||||
width: calc(100% - 1.6rem);
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@ header {
|
||||
}
|
||||
|
||||
.logo-text {
|
||||
font-size: 2.2rem;
|
||||
font-size: 1.7rem;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
line-height: 1;
|
||||
@@ -52,12 +52,36 @@ header {
|
||||
.nav-menu a {
|
||||
color: var(--text);
|
||||
text-decoration: none;
|
||||
font-size: 1rem;
|
||||
transition: var(--theme-transition);
|
||||
font-size: 1.05rem;
|
||||
font-weight: 500;
|
||||
transition: all 0.3s ease;
|
||||
padding: 0.5rem 0.8rem;
|
||||
border-radius: var(--border-radius);
|
||||
position: relative;
|
||||
background-color: rgba(var(--bg-hover-rgb), 0.4);
|
||||
letter-spacing: 0.3px;
|
||||
}
|
||||
|
||||
.nav-menu a::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
background-color: var(--primary);
|
||||
transition: all 0.3s ease;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.nav-menu a:hover {
|
||||
color: var(--primary);
|
||||
background-color: var(--bg-card);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.nav-menu a:hover::after {
|
||||
width: calc(100% - 1.6rem);
|
||||
}
|
||||
|
||||
.theme-toggle {
|
||||
|
||||
Reference in New Issue
Block a user