First Implementation

This commit is contained in:
caroschulte02-alt
2026-05-13 01:27:55 +02:00
parent a3fe501282
commit 68b6ecdfc3
+15 -1
View File
@@ -47,6 +47,7 @@ header {
header img { header img {
object-fit: cover; object-fit: cover;
background-color: white; background-color: white;
border-radius: 14px;
} }
/* ========================= /* =========================
@@ -61,6 +62,7 @@ nav a {
text-decoration: none; text-decoration: none;
color: #f1f5f9; color: #f1f5f9;
font-weight: 600; font-weight: 600;
border-radius: 10px;
transition: 0.3s ease; transition: 0.3s ease;
} }
@@ -78,6 +80,7 @@ input[type="search"] {
border: 1px solid var(--border); border: 1px solid var(--border);
background-color: white; background-color: white;
font-size: 1rem; font-size: 1rem;
border-radius: 12px;
} }
input:focus { input:focus {
@@ -95,11 +98,21 @@ button {
font-size: 1rem; font-size: 1rem;
font-weight: 600; font-weight: 600;
cursor: pointer; cursor: pointer;
transition: 0.3s ease;
border-radius: 12px;
transition: 0.25s ease;
} }
/* Hover Bewegung */
button:hover { button:hover {
background-color: var(--primary-hover); background-color: var(--primary-hover);
transform: translateY(-2px);
}
/* Klick-Effekt */
button:active {
transform: translateY(0px);
} }
/* ========================= /* =========================
@@ -108,6 +121,7 @@ button:hover {
main { main {
background-color: var(--white); background-color: var(--white);
border-radius: 24px;
} }
/* ========================= /* =========================