Merge feature/landing-page: updated CSS path and added Font Awesome

This commit is contained in:
Estelle Köhler 2026-03-29 08:04:09 +02:00
commit 9015eac2eb
2 changed files with 96 additions and 21 deletions

View File

@ -29,6 +29,20 @@ body {
margin-bottom: 40px; /* Using your 40px margin from the first block */ margin-bottom: 40px; /* Using your 40px margin from the first block */
} }
.header__brand {
display: flex;
align-items: center;
gap: 10px;
font-weight: 700;
font-size: 1.2rem;
}
.brand__logo {
height: 34px;
width: auto;
object-fit: contain;
}
/* Grouping container for 'Event finden' and 'Login' */ /* Grouping container for 'Event finden' and 'Login' */
.header__actions { .header__actions {
display: flex; display: flex;
@ -158,4 +172,51 @@ body {
border-radius: 50%; border-radius: 50%;
border: 1px solid var(--black); border: 1px solid var(--black);
margin-top: 20px; margin-top: 20px;
}
.gallery__info {
display: flex;
align-items: center;
gap: 10px;
}
.gallery__handle {
display: flex;
align-items: center;
font-size: 1.1rem;
font-weight: 700;
color: var(--black);
gap: 6px;
}
.gallery__icon {
font-size: 1.15rem;
color: #DD541A;
}
.gallery__at {
font-size: 1.1rem;
color: #222;
}
.gallery__brand {
font-family: 'Inter', sans-serif;
color: #DD541A;
}
/* Footer */
.footer {
display: flex;
justify-content: center;
align-items: center;
padding: 16px 24px;
border: none;
margin-top: 40px;
}
.footer__link {
color: var(--black);
text-decoration: underline;
font-size: 0.8rem;
font-weight: 400;
} }

View File

@ -4,20 +4,21 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Social Cooking Wireframe</title> <title>Social Cooking Wireframe</title>
<<<<<<< HEAD:index.html
<link rel="stylesheet" href="css/landingpage.css" /> <link rel="stylesheet" href="css/landingpage.css" />
</head> </head>
=======
<link rel="stylesheet" href="stylesheet.css" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" integrity="sha512-dU7ZrF1pFq5kVnPzlV9+04YhARzNjCX5Q5P1shgMpuN4s5I8mI8QD4981h7kYtV7sSgNldR0z5pZW5bS2ZpY3Q==" crossorigin="anonymous" referrerpolicy="no-referrer" /></head>
>>>>>>> feature/landing-page:landing-page.html
<body> <body>
<div class="page-wrapper"> <div class="page-wrapper">
<header class="header"> <header class="header">
<div class="header__brand">LOGO</div> <div class="header__brand">Invité</div>
<div class="header__actions">
<div class="header__actions"> <a class="nav__link" href="#">Event finden</a>
<nav class="nav"> <button class="btn btn--outline" type="button">Login</button>
<a class="nav__link btn btn--outline" href="#">Event finden</a> </div>
</nav> </header>
<button class="btn btn--outline" type="button">Login</button>
</div>
</header>
<main class="main-content"> <main class="main-content">
<section class="hero"> <section class="hero">
@ -39,21 +40,34 @@
</div> </div>
</section> </section>
<section class="gallery"> <section class="gallery">
<div class="gallery__track"> <div class="gallery__track">
<article class="gallery__item"><div class="placeholder"></div></article> <article class="gallery__item">
<article class="gallery__item"><div class="placeholder"></div></article> <div class="placeholder"></div>
<article class="gallery__item"><div class="placeholder"></div></article> </article>
</div> <article class="gallery__item">
<div class="placeholder"></div>
</article>
<article class="gallery__item">
<div class="placeholder"></div>
</article>
</div>
<div class="gallery__dots"> <div class="gallery__dots">
<span class="dot"></span> <span class="dot"></span>
<span class="dot"></span> <span class="dot"></span>
<span class="dot"></span> <span class="dot"></span>
</div> </div>
</section>
<div class="gallery__info">
<div class="gallery__handle"><i class="fab fa-instagram gallery__icon" aria-hidden="true"></i><span class="gallery__at">@</span><span class="gallery__brand">Invité</span></div>
</div>
</section>
</main> </main>
<footer class="footer">
<a href="#" class="footer__link">Impressum</a>
</footer>
</div> </div>
<script src="js/landingpage.js"></script> <script src="js/landingpage.js"></script>
</body> </body>