2018-10-15 22:06:01 +03:00
|
|
|
.page {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1.6;
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
display: flex;
|
|
|
|
color: var(--color-text-second);
|
|
|
|
|
2019-02-15 17:56:56 +03:00
|
|
|
@media (--mobile) {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
2018-10-15 22:06:01 +03:00
|
|
|
&-nav {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
|
2019-02-15 17:56:56 +03:00
|
|
|
@media (--mobile) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-10-15 22:06:01 +03:00
|
|
|
&:hover {
|
|
|
|
color: var(--color-link-active);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:last-of-type) {
|
|
|
|
&::after {
|
|
|
|
content: '»';
|
|
|
|
margin: 0 0.7em 0 0.45em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-time {
|
|
|
|
margin-left: auto;
|
2019-02-15 17:56:56 +03:00
|
|
|
|
|
|
|
@media (--mobile) {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2018-10-15 22:06:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
&-button {
|
|
|
|
@apply --button;
|
2019-01-25 06:19:37 +03:00
|
|
|
@apply --button-primary;
|
2018-10-15 22:06:01 +03:00
|
|
|
padding: 5px 10px;
|
|
|
|
font-size: 13px;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
font-size: 26px;
|
|
|
|
font-weight: 700;
|
|
|
|
letter-spacing: -0.04px;
|
|
|
|
margin-bottom: -0.2em;
|
|
|
|
}
|
2019-02-18 10:42:12 +03:00
|
|
|
|
|
|
|
.cdx-marker {
|
|
|
|
background: rgba(245,235,111,0.33);
|
|
|
|
padding: 3px 0;
|
|
|
|
}
|
2019-02-18 11:15:03 +03:00
|
|
|
|
|
|
|
&__content {
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
border-bottom: 1px solid #000;
|
|
|
|
padding-bottom: 1px;
|
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--color-link-active);
|
|
|
|
border-bottom-color: var(--color-link-active);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-15 22:06:01 +03:00
|
|
|
}
|
|
|
|
|
2018-10-20 17:54:15 +03:00
|
|
|
/**
|
|
|
|
* Header
|
|
|
|
* ==================
|
|
|
|
*/
|
2018-10-15 22:06:01 +03:00
|
|
|
.block-header {
|
|
|
|
margin: 1.5em 0 0.5em;
|
|
|
|
|
|
|
|
&--2 {
|
|
|
|
font-size: 22px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--3 {
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
}
|
2018-10-20 17:54:15 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Code
|
|
|
|
* ==================
|
|
|
|
*/
|
|
|
|
.block-code {
|
|
|
|
padding: 20px !important;
|
2019-02-18 10:42:12 +03:00
|
|
|
border-radius: 5px;
|
2019-01-25 02:23:00 +03:00
|
|
|
font-size: 13px;
|
2019-02-18 10:42:12 +03:00
|
|
|
//border: 1px solid var(--color-line-gray);
|
2018-10-20 17:54:15 +03:00
|
|
|
font-family: Menlo,Monaco,Consolas,Courier New,monospace;
|
|
|
|
line-height: 1.7em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List
|
|
|
|
* ==================
|
|
|
|
*/
|
|
|
|
.block-list {
|
|
|
|
li {
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-11 18:44:00 +03:00
|
|
|
/**
|
|
|
|
* Image
|
|
|
|
* ==================
|
|
|
|
*/
|
|
|
|
.block-image {
|
|
|
|
margin: 40px auto;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
&__content {
|
2019-03-12 15:48:56 +03:00
|
|
|
img, video {
|
2019-03-11 18:44:00 +03:00
|
|
|
vertical-align: bottom;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--stretched {
|
|
|
|
max-width: none !important;
|
|
|
|
width: calc(100% + 120px) !important;
|
|
|
|
margin-left: -60px;
|
|
|
|
|
2019-03-12 15:48:56 +03:00
|
|
|
img, video {
|
2019-03-11 18:44:00 +03:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--bordered {
|
2019-03-12 15:48:56 +03:00
|
|
|
img, video {
|
2019-03-11 18:44:00 +03:00
|
|
|
border: 3px solid var(--color-line-gray);
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--with-background {
|
|
|
|
padding: 15px;
|
|
|
|
background: var(--color-line-gray);
|
|
|
|
|
2019-03-12 15:48:56 +03:00
|
|
|
img, video {
|
2019-03-11 18:44:00 +03:00
|
|
|
max-width: 60%;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__caption {
|
|
|
|
margin: 1em auto;
|
|
|
|
color: var(--color-text-second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-11 16:13:57 +03:00
|
|
|
/**
|
|
|
|
* Delimiter
|
|
|
|
* ==================
|
|
|
|
*/
|
|
|
|
.block-delimiter {
|
|
|
|
line-height: 1.6em;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: "***";
|
|
|
|
font-size: 30px;
|
|
|
|
line-height: 65px;
|
|
|
|
height: 30px;
|
|
|
|
letter-spacing: 0.2em;
|
|
|
|
}
|
|
|
|
}
|