Added welcome text
Some checks failed
Copy Files to Samba Share / Copy Files (push) Failing after 2m9s

This commit is contained in:
Arne
2023-08-04 10:43:11 +02:00
parent da9e8fd3a1
commit b2fad878fb
2 changed files with 34 additions and 4 deletions

View File

@@ -1,7 +1,12 @@
<app-header></app-header>
<div class="hero-container">
<img class="hero hero1" src="assets/hero1.webp" alt="hero-image">
<div class="overlay"></div>
<div class="overlay">
<div class="wrapper-slogan">
<p>Sinia,</p>
<p>Uw betrouwbare partner</p>
</div>
</div>
</div>
<div class="alternate">
<div class="wrapper">

View File

@@ -23,8 +23,26 @@ app-header {
height: 60rem;
width: 100%;
top: -160rem;
display: inline-block;
position: relative;
.wrapper-slogan {
padding: 2rem;
max-width: 120rem;
margin: 0 auto;
}
p {
font-weight: bold;
text-transform: uppercase;
background-color: rgba(30, 45, 91, 0.8);
font-size: 4rem;
padding: 1.5rem;
color: $white;
position: relative;
top: 8rem;
width: fit-content;
z-index: 80;
}
}
}
@@ -219,8 +237,15 @@ h2 {
height: 20rem;
.hero {
transform: translateY(-50%) translateX(-50%) scale(0.35);
top: 25%;
transform: translateY(-50%) translateX(-50%) scale(0.55);
top: 0%;
}
.overlay {
p {
font-size: 2rem;
top: 5rem;
}
}
}