Rredundantz in Header.css und Hero.css normalisieren

This commit is contained in:
Selina Erci
2025-07-23 12:49:23 +02:00
parent 096883b0ee
commit f356b37c9e
2 changed files with 127 additions and 187 deletions

View File

@ -1,131 +1,133 @@
.header { .header {
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
right: 0; right: 0;
background-color: rgba(26, 26, 26, 0.95); background-color: #0e0c0c;
z-index: 1000; z-index: 1000;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px); backdrop-filter: blur(5px);
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
padding: 0.5rem 1rem; padding: 1rem 2rem;
height: 70px; height: 70px;
margin: 0 143px 0 143px;
border-bottom: 1px solid #444;
} }
.header-spacer { .header-spacer {
height: 70px; /* Should match the header height */ height: 70px;
/* Should match the header height */
} }
.logo-container { .logo-container {
display: flex; display: flex;
align-items: center; align-items: center;
} }
.logo { .logo {
margin-left: 2em; margin-left: 2em;
height: 4em; height: 4em;
width: auto; width: auto;
transition: transform 0.3s ease; transition: transform 0.3s ease;
} }
.logo:hover { .logo:hover {
transform: scale(1.05); transform: scale(1.05);
} }
.nav-main { .nav-main {
display: flex; display: flex;
align-items: center; align-items: center;
} }
.nav-main a, .nav-main a,
.dropdbtn { .dropdbtn {
margin: 0 1rem; margin: 0 1rem;
color: white; color: white;
text-decoration: none; text-decoration: none;
font-size: 1rem; font-size: 1rem;
cursor: pointer; cursor: pointer;
} }
.nav-main a:hover, .nav-main a:hover,
.dropdbtn:hover { .dropdbtn:hover {
color: #ffa500; color: #ffa500;
} }
/* Dropdown für Home */ /* Dropdown für Home */
.dropdown { .dropdown {
position: relative; position: relative;
display: inline-block; display: inline-block;
} }
.dropdown-content { .dropdown-content {
display: none; display: none;
position: absolute; position: absolute;
background-color: #0e0c0c; background-color: #0e0c0c;
min-width: 200px; min-width: 200px;
z-index: 1; z-index: 1;
border: 1px solid #444; border: 1px solid #444;
border-radius: 4px; border-radius: 4px;
max-height: 400px; max-height: 400px;
overflow-y: auto; overflow-y: auto;
} }
.dropdown-content a { .dropdown-content a {
color: #f5f5f5; color: #f5f5f5;
padding: 0.5rem 1rem; padding: 0.5rem 1rem;
text-decoration: none; text-decoration: none;
display: block; display: block;
} }
.dropdown-content a:hover { .dropdown-content a:hover {
background-color: #1f1a1a; background-color: #1f1a1a;
color: #ffa500; color: #ffa500;
} }
.dropdown:hover .dropdown-content { .dropdown:hover .dropdown-content {
display: block; display: block;
} }
@media (max-width: 768px) { @media (max-width: 768px) {
.header { .header {
height: 65px; height: 65px;
} }
.logo { .logo {
margin-left: 1em; margin-left: 1em;
height: 3em; height: 3em;
} }
.dropdown-content { .dropdown-content {
right: 0; right: 0;
} }
.header-spacer { .header-spacer {
height: 65px; height: 65px;
} }
} }
@media (max-width: 480px) { @media (max-width: 480px) {
.header { .header {
padding: 0.5rem; padding: 0.5rem;
height: 60px; height: 60px;
} }
.logo { .logo {
margin-left: 0.5em; margin-left: 0.5em;
height: 2.5em; height: 2.5em;
} }
.nav-main a, .nav-main a,
.dropdbtn { .dropdbtn {
margin: 0 0.5rem; margin: 0 0.5rem;
font-size: 0.9rem; font-size: 0.9rem;
} }
.header-spacer { .header-spacer {
height: 60px; height: 60px;
} }
} }

View File

@ -1,128 +1,66 @@
/* === Header & Nav === */ /* === Hero === */
.header {
background-color: #0e0c0c;
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 2rem;
border-bottom: 1px solid #444;
}
.hero-overlay { .hero-overlay {
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 1)), url('/images/Background.png'); background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 1)), url('/images/Background.png');
background-size: cover; background-size: cover;
background-position: center; background-position: center;
background-repeat: no-repeat; background-repeat: no-repeat;
margin-top: 2em; margin-top: 2em;
} }
h1 { h1 {
padding-top: 2em; padding-top: 2em;
}
.nav-main {
display: flex;
align-items: center;
margin-right: 377px;
}
.nav-main a,
.dropdbtn {
margin: 0 1rem;
color: white;
text-decoration: none;
font-size: 1rem;
cursor: pointer;
}
.nav-main a:hover,
.dropdbtn:hover {
color: #ffa500;
}
/* Dropdown für Home */
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #0e0c0c;
min-width: 160px;
z-index: 1;
border: 1px solid #444;
border-radius: 4px;
}
.dropdown-content a {
color: #f5f5f5;
padding: 0.5rem 1rem;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #1f1a1a;
color: #ffa500;
}
.dropdown:hover .dropdown-content {
display: block;
} }
.hero { .hero {
position: relative; position: relative;
height: 70vh; height: 70vh;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
color: white; color: white;
margin-bottom: 2rem; margin-bottom: 2rem;
} }
.hero-overlay { .hero-overlay {
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;
/* Background is set in the component */ /* Background is set in the component */
} }
.hero-content { .hero-content {
position: relative; position: relative;
text-align: center; text-align: center;
z-index: 1; z-index: 1;
} }
.hero-content h1 { .hero-content h1 {
font-size: 4rem; font-size: 4rem;
font-weight: bold; font-weight: bold;
} }
.hero-content p { .hero-content p {
margin: 0.5rem 0 1rem 0; margin: 0.5rem 0 1rem 0;
font-size: 1.2rem; font-size: 1.2rem;
} }
.button { .button {
margin-top: 2rem; margin-top: 2rem;
padding: 0.8rem 2rem; padding: 0.8rem 2rem;
background: linear-gradient(45deg, #ffa500, #ff7f00); background: linear-gradient(45deg, #ffa500, #ff7f00);
color: white; color: white;
border: none; border: none;
border-radius: 30px; border-radius: 30px;
font-size: 1rem; font-size: 1rem;
font-weight: bold; font-weight: bold;
text-decoration: none; text-decoration: none;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
transition: transform 0.2s, box-shadow 0.2s; transition: transform 0.2s, box-shadow 0.2s;
} }
.button:hover { .button:hover {
transform: translateY(-3px); transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
} }