2020-09-24 05:14:38 +03:00
|
|
|
.u-shadow {
|
2020-09-28 06:05:46 +03:00
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: var(--shadow-base);
|
|
|
|
overflow: hidden;
|
|
|
|
transition: box-shadow 0.3s var(--animation-base);
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-shadow:hover {
|
2020-09-28 06:05:46 +03:00
|
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-plain-list {
|
2020-09-28 06:05:46 +03:00
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-placeholder {
|
2020-09-28 06:05:46 +03:00
|
|
|
background-color: var(--light-gray-color);
|
|
|
|
position: relative;
|
|
|
|
z-index: 10;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-placeholder.same-height {
|
2020-09-28 06:05:46 +03:00
|
|
|
height: 0;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-placeholder.rectangle {
|
2020-09-28 06:05:46 +03:00
|
|
|
padding-bottom: 56.25%;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-object-fit {
|
2020-09-28 06:05:46 +03:00
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
object-fit: cover;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-permalink {
|
2020-09-28 06:05:46 +03:00
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
outline: none;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
z-index: 10;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-hover-item {
|
2020-09-28 06:05:46 +03:00
|
|
|
transition: opacity 0.3s var(--animation-base);
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-hover-wrapper:hover .u-hover-item {
|
2020-09-28 06:05:46 +03:00
|
|
|
opacity: 0.5;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-hover-wrapper:hover .u-hover-item:hover {
|
2020-09-28 06:05:46 +03:00
|
|
|
opacity: 1;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-text-format h1,
|
|
|
|
.u-text-format h2,
|
|
|
|
.u-text-format h3,
|
|
|
|
.u-text-format h4,
|
|
|
|
.u-text-format h5,
|
|
|
|
.u-text-format h6 {
|
2020-09-28 06:05:46 +03:00
|
|
|
font-weight: 800;
|
|
|
|
margin-top: 40px;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-text-format h1 {
|
2020-09-28 06:05:46 +03:00
|
|
|
font-size: 26px;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-text-format h2 {
|
2020-09-28 06:05:46 +03:00
|
|
|
font-size: 23px;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-text-format h3 {
|
2020-09-28 06:05:46 +03:00
|
|
|
font-size: 20px;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-text-format h4 {
|
2020-09-28 06:05:46 +03:00
|
|
|
font-size: 17px;
|
|
|
|
font-weight: 700;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-text-format h5 {
|
2020-09-28 06:05:46 +03:00
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 700;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-text-format h6 {
|
2020-09-28 06:05:46 +03:00
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 700;
|
|
|
|
text-transform: uppercase;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-text-format strong {
|
2020-09-28 06:05:46 +03:00
|
|
|
color: var(--dark-gray-color);
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-text-format a {
|
2020-09-28 06:05:46 +03:00
|
|
|
color: var(--primary-color);
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-text-format > *:first-child,
|
|
|
|
.u-text-format > *:first-child > *:first-child {
|
2020-09-28 06:05:46 +03:00
|
|
|
margin-top: 0 !important;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.u-text-format > *:last-child,
|
|
|
|
.u-text-format > *:last-child > *:last-child {
|
2020-09-28 06:05:46 +03:00
|
|
|
margin-bottom: 0 !important;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|