website/static/src/scss/_hero.scss

72 lines
1000 B
SCSS
Raw Normal View History

img.hero {
height: calc(50vh - $navbar-height) !important;
width: 100%;
object-fit: cover;
}
2022-06-14 20:57:43 +01:00
section.hero {
position: sticky;
top: 0;
z-index: 10;
2022-06-19 16:11:53 +01:00
margin-top: 3rem;
2022-06-14 20:57:43 +01:00
padding-top: 0.5rem;
margin-bottom: 1.5rem;
background-color: $white;
2022-06-19 16:11:53 +01:00
display: block;
2022-06-14 20:57:43 +01:00
&.stuck {
box-shadow: $shadow;
}
2022-06-14 20:57:43 +01:00
.hero-body {
padding: 0;
}
.dropdown-wrapper {
display: flex;
align-items: flex-end;
justify-content: flex-end;
}
.dropdown {
li {
list-style: none !important;
}
.dropdown-content {
overflow-y: scroll;
max-height: 50vh;
}
ul {
margin: 0.5rem;
}
.menu-list li ul {
padding-left: initial;
}
}
.subtitle {
margin-bottom: 0.5rem;
}
2022-06-19 16:11:53 +01:00
2022-06-26 10:52:59 +01:00
.title {
2022-07-04 19:13:23 +01:00
margin-bottom: 1.25rem;
font-weight: 300;
font-size: 3.5rem;
2022-06-26 10:52:59 +01:00
}
2022-06-19 16:11:53 +01:00
.column {
2022-06-19 16:29:59 +01:00
padding-bottom: unset;
2022-06-19 16:11:53 +01:00
}
2022-06-19 16:56:47 +01:00
nav.breadcrumb {
2022-07-04 19:13:23 +01:00
margin-bottom: 0 !important;
2022-06-19 16:56:47 +01:00
}
.content-details {
margin-bottom: 0 !important;
}
2022-06-14 20:57:43 +01:00
}