website/assets/sass/landing.scss

71 lines
1.1 KiB
SCSS
Raw Normal View History

2022-12-10 10:37:36 +00:00
.full-logo {
width: 100%;
}
2023-11-01 15:50:34 +00:00
.landing-border {
border: 2px solid rgba(0, 0, 0, 0.4);
border-radius: 4px;
}
.landing-two-sections {
display: grid;
grid-template-columns: 1fr 1fr;
@extend .landing-border;
}
.landing-cover {
img {
object-fit: cover;
object-position: center;
width: 100%;
height: 100%;
}
2022-12-10 10:37:36 +00:00
}
.landing-brand {
padding: 1rem;
text-align: center;
display: flex;
flex-direction: column;
}
.brand__name {
text-transform: uppercase;
font-size: 3rem;
margin: 0;
}
.brand__role1-container {
.text {
margin: 0;
}
margin-bottom: 1rem;
}
.brand__logo {
svg {
max-width: 25rem;
2022-12-10 10:37:36 +00:00
stroke: white;
}
}
2023-11-01 15:50:34 +00:00
@media (max-width: $md-breakpoint) {
.landing-two-sections {
display: block;
}
.landing-cover {
img {
height: 13rem;
}
}
.landing-brand {
.brand__logo svg {
max-width: 15rem;
}
.brand__name {
font-size: 2.5rem;
}
}
}