hmn/src/rawdata/scss/_timeline.scss

46 lines
967 B
SCSS
Raw Normal View History

2021-03-11 04:19:37 +00:00
.timeline-item {
2021-10-24 14:22:37 +00:00
@include usevar(background-color, card-background);
@include usevar(--fade-color, card-background);
@include usevar(color, main-color);
2021-03-11 04:19:37 +00:00
.avatar-icon {
border: 2px solid;
@include usevar(border-color, theme-color);
&.big {
2021-10-24 20:48:28 +00:00
width: 3rem;
height: 3rem;
@media #{$breakpoint-not-small} {
width: px2rem(62px);
height: px2rem(62px);
}
2021-03-11 04:19:37 +00:00
}
}
.timeline-content-box > * {
display: block;
max-width: 100%;
max-height: 80vh;
}
.timeline-content-box.embed {
2021-10-24 14:22:37 +00:00
@extend .aspect-ratio, .aspect-ratio--16x9;
2021-03-11 04:19:37 +00:00
2021-10-24 14:22:37 +00:00
> iframe {
@extend .aspect-ratio--object;
2021-03-11 04:19:37 +00:00
}
}
}
.timeline-modal {
.container {
max-height: 100vh;
@media #{$breakpoint-not-small} {
width: auto;
max-height: calc(100vh - 2rem);
}
}
}