32 lines
504 B
SCSS
Vendored
32 lines
504 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;
|
|
}
|