38 lines
584 B
SCSS
Vendored
38 lines
584 B
SCSS
Vendored
@use "../abstracts/fonts";
|
|
@use "clearfix";
|
|
@use "container";
|
|
@use "../components/button";
|
|
@use "../components/pretty_photo";
|
|
@use "../components/cookie";
|
|
@use "../components/list";
|
|
|
|
@use "../layout";
|
|
|
|
@use "mobile";
|
|
|
|
.mejs__overlay-button {
|
|
border: none;
|
|
}
|
|
|
|
.clipText {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 4;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
@for $i from 1 through (10) {
|
|
.clipText-#{$i} {
|
|
-webkit-line-clamp: $i;
|
|
}
|
|
}
|
|
|
|
a, a:hover, a:active {
|
|
color: #0f259d;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.md_padding_top_80 {
|
|
padding-top: 80px
|
|
}
|
|
}
|