2019-11-12 03:10:27 +00:00
|
|
|
.summary-card {
|
2019-11-21 09:25:28 +00:00
|
|
|
@for $i from 1 through 8 {
|
|
|
|
&:nth-child(#{$i}) {
|
|
|
|
@include animation('slide-in-down-2 .3s #{$i * .15}s 1 ease both');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-17 11:01:09 +00:00
|
|
|
margin: 0 0.5rem;
|
|
|
|
padding: 0 0.5rem;
|
|
|
|
|
2019-11-08 02:15:12 +00:00
|
|
|
.title {
|
2019-11-04 13:09:44 +00:00
|
|
|
a {
|
2019-11-08 02:15:12 +00:00
|
|
|
font-family: $summary_title_font;
|
|
|
|
font-weight: 700;
|
2019-11-04 13:09:44 +00:00
|
|
|
@include themify($themes) {
|
|
|
|
color: themed('title-color');
|
|
|
|
@include on-event {
|
|
|
|
color: themed('link-hover');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.subtitle {
|
2019-11-08 02:15:12 +00:00
|
|
|
font-family: $summary_subtitle_font;
|
2019-11-04 13:09:44 +00:00
|
|
|
@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;
|
2019-11-08 02:15:12 +00:00
|
|
|
font-family: $summary_text_font;
|
2019-11-04 13:09:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__image {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2019-11-09 19:52:09 +00:00
|
|
|
|
|
|
|
&-wrapper {
|
|
|
|
height: 100%;
|
|
|
|
width: auto;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 1rem;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
2019-11-04 13:09:44 +00:00
|
|
|
}
|
|
|
|
|
2019-11-12 03:10:27 +00:00
|
|
|
&__video {
|
2019-11-04 13:09:44 +00:00
|
|
|
width: 100%;
|
|
|
|
max-height: 500px;
|
|
|
|
object-fit: contain;
|
2019-11-09 19:52:09 +00:00
|
|
|
|
|
|
|
&-wrapper {
|
|
|
|
padding: 1rem;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
2019-11-04 13:09:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
margin-top: 1.5rem;
|
2019-11-12 10:03:15 +00:00
|
|
|
@include themify($themes) {
|
|
|
|
border-top: 1px solid themed('hr-color');
|
|
|
|
}
|
2019-11-04 13:09:44 +00:00
|
|
|
}
|
|
|
|
&:not(:last-child) {
|
|
|
|
hr {
|
|
|
|
margin-bottom: 4rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
hr {
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-12 03:10:27 +00:00
|
|
|
|
|
|
|
.summary-classic {
|
2019-11-21 09:25:28 +00:00
|
|
|
@for $i from 1 through 13 {
|
|
|
|
&:nth-child(#{$i}) {
|
|
|
|
@include animation('slide-in-left .25s #{$i * .15}s 1 ease both');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-12 03:10:27 +00:00
|
|
|
padding: 0 1rem;
|
|
|
|
.title {
|
|
|
|
font-size: 24px;
|
|
|
|
a {
|
|
|
|
font-family: $summary_title_font;
|
|
|
|
font-weight: 700;
|
|
|
|
@include themify($themes) {
|
|
|
|
color: themed('title-color');
|
|
|
|
@include on-event {
|
|
|
|
color: themed('link-hover');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.subtitle {
|
|
|
|
font-family: $summary_subtitle_font;
|
|
|
|
@include themify($themes) {
|
|
|
|
color: themed('meta-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__flex-box {
|
|
|
|
@include flexbox();
|
2019-11-12 10:03:15 +00:00
|
|
|
margin-top: 1rem;
|
2019-11-12 03:10:27 +00:00
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__content {
|
|
|
|
@include flexbox();
|
|
|
|
@include flex-direction(column);
|
|
|
|
@include justify-content(flex-start);
|
|
|
|
padding-left: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
margin-top: 1rem;
|
|
|
|
line-height: 1.7rem;
|
|
|
|
font-family: $summary_text_font;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__image {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: contain;
|
|
|
|
|
|
|
|
&-wrapper {
|
2019-11-17 16:44:04 +00:00
|
|
|
max-width: 130px;
|
|
|
|
min-width: 130px;
|
2019-11-12 03:10:27 +00:00
|
|
|
@include align-self(center);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
2019-11-12 10:03:15 +00:00
|
|
|
@include themify($themes) {
|
|
|
|
border-top: 1px solid themed('hr-color');
|
2019-11-12 03:10:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-12 10:03:15 +00:00
|
|
|
|
|
|
|
.summary-compact {
|
2019-11-21 09:25:28 +00:00
|
|
|
@for $i from 1 through 20 {
|
|
|
|
&:nth-child(#{$i}) {
|
|
|
|
@include animation('slide-in-left .25s #{$i * .15}s 1 ease both');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-12 10:03:15 +00:00
|
|
|
padding: 0 1rem;
|
|
|
|
&__flexbox {
|
|
|
|
@include flexbox();
|
|
|
|
margin-top: 1rem;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__meta {
|
|
|
|
padding: 1rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
@include themify($themes) {
|
|
|
|
border-top: 1px solid themed('hr-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|