hugo-theme-zzo/assets/sass/components/_summary.scss

71 lines
1.1 KiB
SCSS

.summary {
padding: 0 1rem;
.title {
font-family: "Montserrat", sans-serif;
font-weight: 700;
a {
@include themify($themes) {
color: themed('title-color');
@include on-event {
color: themed('link-hover');
}
}
}
}
.subtitle {
font-family: "Merriweather", serif;
@include themify($themes) {
color: themed('meta-color');
}
}
&__content {
@include flexbox();
@include flex-direction(column);
@include justify-content(center);
}
&__text {
margin-top: 1rem;
line-height: 1.7rem;
font-family: "Merriweather", serif;
}
&__image-wrapper {
height: 100%;
width: auto;
margin: 0 auto;
padding: 1rem;
}
&__image {
width: 100%;
height: 100%;
}
.video {
padding: 0 1rem;
}
.video-js {
width: 100%;
max-height: 500px;
object-fit: contain;
}
hr {
margin-top: 1.5rem;
}
&:not(:last-child) {
hr {
margin-bottom: 4rem;
}
}
&:last-child {
hr {
margin-bottom: 2rem;
}
}
}