749 lines
20 KiB
CSS
749 lines
20 KiB
CSS
|
|
@font-face {
|
||
|
|
font-family: 'InterL';
|
||
|
|
src: url('fonts/Inter-Light.otf');
|
||
|
|
font-weight: 400;
|
||
|
|
font-style: normal;
|
||
|
|
}
|
||
|
|
@font-face {
|
||
|
|
font-family: 'Inter';
|
||
|
|
src: url('fonts/Inter-Regular.otf');
|
||
|
|
font-weight: 400;
|
||
|
|
font-style: normal;
|
||
|
|
}
|
||
|
|
@font-face {
|
||
|
|
font-family: 'InterM';
|
||
|
|
src: url('fonts/Inter-Medium.otf');
|
||
|
|
font-weight: 400;
|
||
|
|
font-style: normal;
|
||
|
|
}
|
||
|
|
@font-face {
|
||
|
|
font-family: 'InterSB';
|
||
|
|
src: url('fonts/Inter-SemiBold.otf');
|
||
|
|
font-weight: 400;
|
||
|
|
font-style: normal;
|
||
|
|
}
|
||
|
|
@font-face {
|
||
|
|
font-family: 'InterB';
|
||
|
|
src: url('fonts/Inter-Bold.otf');
|
||
|
|
font-weight: 400;
|
||
|
|
font-style: normal;
|
||
|
|
}
|
||
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: 'Golos';
|
||
|
|
src: url('fonts/GolosText-Regular.ttf');
|
||
|
|
font-weight: 400;
|
||
|
|
font-style: normal;
|
||
|
|
}
|
||
|
|
|
||
|
|
@font-face {
|
||
|
|
font-family: 'GolosM';
|
||
|
|
src: url('fonts/GolosText-Medium.ttf');
|
||
|
|
font-weight: 400;
|
||
|
|
font-style: normal;
|
||
|
|
}
|
||
|
|
@font-face {
|
||
|
|
font-family: 'GolosDB';
|
||
|
|
src: url('fonts/GolosText-DemiBold.ttf');
|
||
|
|
font-weight: 400;
|
||
|
|
font-style: normal;
|
||
|
|
}
|
||
|
|
@font-face {
|
||
|
|
font-family: 'GolosB';
|
||
|
|
src: url('fonts/GolosText-Bold.ttf');
|
||
|
|
font-weight: 400;
|
||
|
|
font-style: normal;
|
||
|
|
}
|
||
|
|
|
||
|
|
:root {
|
||
|
|
--white: #ffffff;
|
||
|
|
--black: #000000;
|
||
|
|
--color-text-primary: #1d1e21;
|
||
|
|
--color-text-secondary: #acacac;
|
||
|
|
--color-link: #c64e1b;
|
||
|
|
--color-link-hover: #fa773f;
|
||
|
|
--color-form: #3f434b;
|
||
|
|
--color-bg-main: #223d36;
|
||
|
|
--color-light: #868b87;
|
||
|
|
--bg-light: #fafafa;
|
||
|
|
--bg-warn: #ffdcc6;
|
||
|
|
--bg-form: #eee;
|
||
|
|
--border-light: #d2d2d2;
|
||
|
|
--bg-shadow: 0 19px 19px 0 rgba(230, 230, 230, 0.19), 0 1px 4px 0 #f3f3f3;
|
||
|
|
|
||
|
|
--h-header: 64px;
|
||
|
|
--w-screen: 100px;
|
||
|
|
|
||
|
|
--size-text-maintitle: 54px;
|
||
|
|
--size-text-title: 40px;
|
||
|
|
--size-text-subtitle: 32px;
|
||
|
|
--size-text-primary: 20px;
|
||
|
|
--size-text-secondary: 16px;
|
||
|
|
|
||
|
|
--indent-huge: 72px;
|
||
|
|
--indent-big: 52px;
|
||
|
|
--indent-medium: 32px;
|
||
|
|
--indent-small: 24px;
|
||
|
|
--indent-mini: 16px;
|
||
|
|
}
|
||
|
|
body, html {
|
||
|
|
height: 100%
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
-ms-text-size-adjust: 100%;
|
||
|
|
-moz-text-size-adjust: 100%;
|
||
|
|
-webkit-text-size-adjust: 100%;
|
||
|
|
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
padding: 0;
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
a {
|
||
|
|
color: var(--color-link);
|
||
|
|
text-decoration: none;
|
||
|
|
}
|
||
|
|
a:is(:hover, :focus, :active) {
|
||
|
|
color: var(--color-link-hover);
|
||
|
|
}
|
||
|
|
|
||
|
|
button, a.btn {
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
color: var(--white);
|
||
|
|
font-family: 'InterL';
|
||
|
|
font-size: var(--size-text-secondary);
|
||
|
|
padding: 0 24px;
|
||
|
|
height: 48px;
|
||
|
|
border: 1px solid transparent;
|
||
|
|
border-radius: 4px;
|
||
|
|
background: var(--color-link);
|
||
|
|
}
|
||
|
|
a.btn.disabled {
|
||
|
|
pointer-events: none;
|
||
|
|
opacity: 0.5;
|
||
|
|
cursor: not-allowed;
|
||
|
|
}
|
||
|
|
button:is(:hover, :focus, :active),
|
||
|
|
a.btn:is(:hover, :focus, :active) {
|
||
|
|
background: var(--color-link-hover);
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
.btn.btn-secondary {
|
||
|
|
color: var(--color-link);
|
||
|
|
border-color: var(--color-link);
|
||
|
|
background-color: transparent;
|
||
|
|
}
|
||
|
|
.btn.btn-secondary:is(:hover, :focus, :active) {
|
||
|
|
color: var(--color-link-hover);
|
||
|
|
border-color: var(--color-link-hover);
|
||
|
|
background: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
.header {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
align-items: center;
|
||
|
|
font-family: 'InterSB';
|
||
|
|
min-height: var(--h-header);
|
||
|
|
padding: 0 var(--w-screen);
|
||
|
|
border: 0;
|
||
|
|
background-color: var(--color-bg-main);
|
||
|
|
}
|
||
|
|
.header .header-logo {
|
||
|
|
width: 62px;
|
||
|
|
height: 40px;
|
||
|
|
background: url(img/svg/mil-logo.svg) no-repeat 0 50%;
|
||
|
|
}
|
||
|
|
.header .header-title {
|
||
|
|
color: var(--white);
|
||
|
|
font-size: var(--size-text-secondary);
|
||
|
|
margin-left: var(--indent-mini);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .header {
|
||
|
|
background-color: var(--color-text-primary);
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.container {
|
||
|
|
width: 100%;
|
||
|
|
max-width: 100%;
|
||
|
|
height: auto;
|
||
|
|
margin: 0;
|
||
|
|
padding: var(--h-header) 0 0;
|
||
|
|
position: absolute;
|
||
|
|
top: 0px;
|
||
|
|
left: 0;
|
||
|
|
right: 0;
|
||
|
|
bottom: 0;
|
||
|
|
border: 0;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.container-inside {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
height: 100%;
|
||
|
|
color: var(--color-text-primary);
|
||
|
|
font-family: 'Inter';
|
||
|
|
padding: 0 var(--w-screen);
|
||
|
|
background-color: var(--bg-light);
|
||
|
|
overflow: auto;
|
||
|
|
}
|
||
|
|
.container-inside .short-text {
|
||
|
|
max-width: 60%;
|
||
|
|
}
|
||
|
|
.container-inside .paragraph-left .short-text {
|
||
|
|
max-width: 70%;
|
||
|
|
}
|
||
|
|
.container-inside .block-group {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
margin: auto;
|
||
|
|
}
|
||
|
|
.container-inside .block {
|
||
|
|
font-family: 'Inter';
|
||
|
|
min-width: 355px;
|
||
|
|
padding: 40px;
|
||
|
|
border-radius: 12px;
|
||
|
|
background-color: var(--white);
|
||
|
|
box-shadow: var(--bg-shadow);
|
||
|
|
}
|
||
|
|
.container-inside .block > div {
|
||
|
|
max-width: 350px;
|
||
|
|
}
|
||
|
|
.container-inside .block + .block {
|
||
|
|
margin-left: 40px;
|
||
|
|
}
|
||
|
|
.container-inside .block .block-img {
|
||
|
|
width: 100px;
|
||
|
|
height: 100px;
|
||
|
|
}
|
||
|
|
.container-inside .block.block-ul .block-img {
|
||
|
|
background-image: url(img/svg/ul.svg);
|
||
|
|
}
|
||
|
|
.container-inside .block.block-fl .block-img {
|
||
|
|
background-image: url(img/svg/fl.svg);
|
||
|
|
}
|
||
|
|
.container-inside .block .block-title {
|
||
|
|
font-family: 'GolosB';
|
||
|
|
font-size: var(--size-text-subtitle);
|
||
|
|
margin-top: var(--indent-mini);
|
||
|
|
}
|
||
|
|
.container-inside .block .block-description {
|
||
|
|
font-family: 'Golos';
|
||
|
|
font-size: var(--size-text-primary);
|
||
|
|
margin-top: var(--indent-mini);
|
||
|
|
}
|
||
|
|
.container-inside .block .btn {
|
||
|
|
width: auto;
|
||
|
|
margin-top: var(--indent-medium);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside {
|
||
|
|
padding: 0;
|
||
|
|
background-color: var(--white);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .btn-group {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .btn-group .btn + .btn {
|
||
|
|
margin-left: var(--indent-mini);
|
||
|
|
}
|
||
|
|
|
||
|
|
:is(.ul, .fl) .container-inside .list-group {
|
||
|
|
position: relative;
|
||
|
|
padding: 0 var(--w-screen);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .btn {
|
||
|
|
width: max-content;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .title {
|
||
|
|
font-size: var(--size-text-maintitle);
|
||
|
|
font-family: 'GolosB';
|
||
|
|
margin-bottom: var(--indent-huge);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .subtitle {
|
||
|
|
font-size: var(--size-text-title);
|
||
|
|
font-family: 'GolosDB';
|
||
|
|
margin-bottom: var(--indent-big);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .muted {
|
||
|
|
color: var(--color-light);
|
||
|
|
}
|
||
|
|
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .paragraph {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .paragraph .paragraph-left {
|
||
|
|
width: 40%;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .paragraph .paragraph-right {
|
||
|
|
width: 60%;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .paragraph .paragraph-half {
|
||
|
|
width: 50%;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .paragraph .paragraph-third {
|
||
|
|
width: 33.33%;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .paragraph [class*="paragraph-"] + [class*="paragraph-"] {
|
||
|
|
margin-left: 40px;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .paragraph .text {
|
||
|
|
font-family: 'InterSB';
|
||
|
|
font-size: var(--size-text-primary);
|
||
|
|
margin-bottom: var(--indent-mini);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .paragraph .icon-checklist,
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .paragraph .icon-clock,
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .paragraph .icon-text {
|
||
|
|
padding-top: 44px;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .paragraph .icon-checklist {
|
||
|
|
background: url(img/svg/checklist-32x32.svg) no-repeat 0 0;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .paragraph .icon-clock {
|
||
|
|
background: url(img/svg/clock-32x32.svg) no-repeat 0 0;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .paragraph .icon-text {
|
||
|
|
background: url(img/svg/text-32x32.svg) no-repeat 0 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .list > div {
|
||
|
|
position: relative;
|
||
|
|
padding-left: 36px;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .list > div + div {
|
||
|
|
margin-top: var(--indent-mini);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .list > div::after {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
width: 24px;
|
||
|
|
height: 24px;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .list > div.esia::after {
|
||
|
|
background: url(img/svg/esia-24x24.svg) no-repeat 0 0;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .list > div.case::after {
|
||
|
|
background: url(img/svg/case-24x24.svg) no-repeat 0 0;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .list > div.user::after {
|
||
|
|
background: url(img/svg/user-24x24.svg) no-repeat 0 0;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .list > div.docs::after {
|
||
|
|
background: url(img/svg/docs-24x24.svg) no-repeat 0 0;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .list > div.romb::after {
|
||
|
|
background: url(img/svg/romb-24x24.svg) no-repeat 0 0;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .list ~ .btn-group {
|
||
|
|
margin-top: var(--indent-medium);
|
||
|
|
}
|
||
|
|
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .section-group > div {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
min-height: 48px;
|
||
|
|
position: relative;
|
||
|
|
padding: 16px 16px 16px 76px;
|
||
|
|
margin-bottom: 16px;
|
||
|
|
border-radius: 4px;
|
||
|
|
background-color: var(--bg-form);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .section-group > div:last-child {
|
||
|
|
margin-bottom: 0;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .section-group > div::before {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
left: 16px;
|
||
|
|
width: 48px;
|
||
|
|
height: 48px;
|
||
|
|
border-radius: 50px;
|
||
|
|
background-color: var(--color-bg-main);
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-position: 50% 50%;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .section-group > div.icon-user::before {
|
||
|
|
background-image: url(img/svg/pers-wt.svg);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .section-group > div.icon-case::before {
|
||
|
|
background-image: url(img/svg/case-wt.svg);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .section-group > div.icon-shield::before {
|
||
|
|
background-image: url(img/svg/shield-wt.svg);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .section-group > div.icon-clip::before {
|
||
|
|
background-image: url(img/svg/clip-wt.svg);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .section-group > div.icon-pers::before {
|
||
|
|
background-image: url(img/svg/pers-wt.svg);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .section-group > div.icon-building::before {
|
||
|
|
background-image: url(img/svg/building-wt.svg);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .section-group > div .muted {
|
||
|
|
margin-top: 12px;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .section-group > div .muted .detailed {
|
||
|
|
color: var(--color-text-primary);
|
||
|
|
font-family: 'InterB';
|
||
|
|
}
|
||
|
|
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list {
|
||
|
|
position: relative;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
padding-top: 60px;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list::before {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
width: calc(80% + 40px);
|
||
|
|
height: 4px;
|
||
|
|
top: 18px;
|
||
|
|
left: 0;
|
||
|
|
background-color: var(--color-link-hover);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list > div {
|
||
|
|
position: relative;
|
||
|
|
width: 20%;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list > div::before {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
width: 32px;
|
||
|
|
height: 32px;
|
||
|
|
top: -60px;
|
||
|
|
left: 0;
|
||
|
|
border-radius: 2px;
|
||
|
|
border: 4px solid var(--color-link-hover);
|
||
|
|
background-color: var(--bg-light);
|
||
|
|
transform: rotate(45deg);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list > div::after {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
font-family: 'InterB';
|
||
|
|
top: -50px;
|
||
|
|
left: 15px;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list > div:nth-child(1)::after {
|
||
|
|
content: "1";
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list > div:nth-child(2)::after {
|
||
|
|
content: "2";
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list > div:nth-child(3)::after {
|
||
|
|
content: "3";
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list > div:nth-child(4)::after {
|
||
|
|
content: "4";
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list > div:nth-child(5)::after {
|
||
|
|
content: "5";
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list > div + div {
|
||
|
|
margin-left: 40px;
|
||
|
|
}
|
||
|
|
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .msg-list {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
padding: 8px;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .msg-list span {
|
||
|
|
width: 32px;
|
||
|
|
height: 32px;
|
||
|
|
padding-right: 16px;
|
||
|
|
background: url(img/svg/info-gr.svg) no-repeat 0 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .docs-list {
|
||
|
|
position: relative;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .docs-list > div {
|
||
|
|
position: relative;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
align-items: center;
|
||
|
|
width: 20%;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .docs-list > div a {
|
||
|
|
width: 24px;
|
||
|
|
height: 24px;
|
||
|
|
padding-right: 8px;
|
||
|
|
background: url(img/svg/download-24x24.svg) no-repeat 0 0;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .docs-list > div + div {
|
||
|
|
margin-left: 40px;
|
||
|
|
}
|
||
|
|
|
||
|
|
:is(.ul, .fl) .container-inside .list-group.lk-what {
|
||
|
|
padding-top: var(--indent-huge);
|
||
|
|
padding-bottom: var(--indent-huge);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group.lk-what::after {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
right: 0;
|
||
|
|
bottom: 0;
|
||
|
|
opacity: 0.12;
|
||
|
|
background: url(img/bg-star.png) no-repeat calc(100% + 200px) 0px transparent;
|
||
|
|
z-index: 0;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group.lk-what > div {
|
||
|
|
position: relative;
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
:is(.ul, .fl) .container-inside .list-group.lk-access {
|
||
|
|
color: var(--white);
|
||
|
|
padding-top: var(--indent-big);
|
||
|
|
padding-bottom: var(--indent-big);
|
||
|
|
background-color: var(--color-bg-main);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group.lk-info {
|
||
|
|
padding-top: var(--indent-big);
|
||
|
|
padding-bottom: var(--indent-big);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group.lk-pass {
|
||
|
|
padding-top: var(--indent-big);
|
||
|
|
padding-bottom: var(--indent-big);
|
||
|
|
background-color: var(--bg-light);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group.lk-when {
|
||
|
|
color: var(--white);
|
||
|
|
padding-top: var(--indent-big);
|
||
|
|
padding-bottom: var(--indent-big);
|
||
|
|
background-color: var(--color-bg-main);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group.lk-msg {
|
||
|
|
background-color: var(--border-light);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group.lk-limits {
|
||
|
|
padding-top: var(--indent-big);
|
||
|
|
padding-bottom: var(--indent-big);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group.lk-docs {
|
||
|
|
flex: 1;
|
||
|
|
color: var(--white);
|
||
|
|
padding-top: var(--indent-huge);
|
||
|
|
padding-bottom: var(--indent-huge);
|
||
|
|
background-color: var(--color-text-primary);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group.lk-alert {
|
||
|
|
padding-top: var(--indent-big);
|
||
|
|
padding-bottom: var(--indent-big);
|
||
|
|
background-color: var(--bg-light);
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group.lk-footer {
|
||
|
|
padding-top: var(--indent-small);
|
||
|
|
padding-bottom: var(--indent-small);
|
||
|
|
background-color: var(--color-text-primary);
|
||
|
|
}
|
||
|
|
|
||
|
|
:is(.fl) .container-inside .list-group.lk-what .title {
|
||
|
|
color: var(--color-link);
|
||
|
|
margin-bottom: var(--indent-small);
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-what .title::after {
|
||
|
|
content: url(img/svg/star.svg);
|
||
|
|
top: 18px;
|
||
|
|
position: relative;
|
||
|
|
margin-left: var(--indent-big);
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-what .title + .short-text {
|
||
|
|
max-width: 25%;
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-what .title ~ .subtitle {
|
||
|
|
margin-top: var(--indent-big);
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-info .section-group > div {
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-pass .subtitle {
|
||
|
|
margin-bottom: 0;
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-pass .subtitle + div {
|
||
|
|
margin-top: var(--indent-small);
|
||
|
|
margin-bottom: var(--indent-big);
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-pass .pass-list::before {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-pass .pass-list > div {
|
||
|
|
position: relative;
|
||
|
|
width: 33.33%;
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-msg {
|
||
|
|
color: var(--color-link);
|
||
|
|
font-family: 'InterSB';
|
||
|
|
background-color: var(--bg-form);
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-msg span {
|
||
|
|
background: url(img/svg/info.svg) no-repeat 0 4px;
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-limits .subtitle {
|
||
|
|
margin-bottom: 0;
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-limits .subtitle + div {
|
||
|
|
margin-top: var(--indent-small);
|
||
|
|
margin-bottom: var(--indent-big);
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-limits .scheme {
|
||
|
|
width: 100%;
|
||
|
|
height: 204px;
|
||
|
|
background: url(img/svg/scheme.svg) no-repeat 0 0;
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-alert > .short-text {
|
||
|
|
margin-bottom: var(--indent-big);
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-alert .alert-block {
|
||
|
|
position: relative;
|
||
|
|
padding: var(--indent-small) 64px var(--indent-small) var(--indent-small);
|
||
|
|
border-radius: 4px;
|
||
|
|
border: 2px solid var(--border-light);
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-alert .alert-block::after {
|
||
|
|
content: url(img/svg/info.svg);
|
||
|
|
position: absolute;
|
||
|
|
top: var(--indent-small);
|
||
|
|
right: var(--indent-small);
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-alert .alert-block > div + div {
|
||
|
|
margin-top: var(--indent-small);
|
||
|
|
}
|
||
|
|
:is(.fl) .container-inside .list-group.lk-alert .alert-block > div:last-child {
|
||
|
|
color: var(--color-link);
|
||
|
|
}
|
||
|
|
|
||
|
|
.browser-check-content {
|
||
|
|
font-family: 'Golos';
|
||
|
|
font-size: var(--size-text-secondary);
|
||
|
|
padding: var(--indent-mini) var(--w-screen) var(--indent-mini) calc(var(--w-screen) + 38px);
|
||
|
|
background-color: var(--bg-warn);
|
||
|
|
}
|
||
|
|
.browser-check-text {
|
||
|
|
position: relative;
|
||
|
|
padding-left: 40px;
|
||
|
|
}
|
||
|
|
.browser-check-text::before {
|
||
|
|
position: absolute;
|
||
|
|
content: url(img/svg/info.svg);
|
||
|
|
left: 0;
|
||
|
|
top: calc((100% - 24px) / 2);
|
||
|
|
}
|
||
|
|
.text-header {
|
||
|
|
color: var(--color-link);
|
||
|
|
font-family: 'GolosB';
|
||
|
|
font-size: var(--size-text-primary);
|
||
|
|
margin-bottom: 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*@media ((max-width: 780px) or ((orientation: landscape) and (max-device-width : 1024px))) {*/
|
||
|
|
@media (max-width: 1024px) {
|
||
|
|
body {
|
||
|
|
--w-screen: 32px;
|
||
|
|
|
||
|
|
--size-text-maintitle: 32px;
|
||
|
|
--size-text-title: 28px;
|
||
|
|
--size-text-subtitle: 24px;
|
||
|
|
|
||
|
|
--indent-huge: 32px;
|
||
|
|
--indent-big: 24px;
|
||
|
|
--indent-medium: 24px;
|
||
|
|
--indent-small: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.container-inside .short-text {
|
||
|
|
max-width: 100% !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
.container-inside .block-group {
|
||
|
|
flex-direction: column;
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
.container-inside .block-group .block {
|
||
|
|
min-width: auto;
|
||
|
|
margin: var(--indent-huge) 0 0;
|
||
|
|
}
|
||
|
|
.container-inside .block-group .block > div {
|
||
|
|
max-width: inherit !important;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .paragraph {
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .paragraph [class*="paragraph-"] {
|
||
|
|
width: auto;
|
||
|
|
margin-left: 0;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .paragraph [class*="paragraph-"] + [class*="paragraph-"] {
|
||
|
|
margin-top: var(--indent-mini);
|
||
|
|
margin-left: 0;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list {
|
||
|
|
flex-direction: column;
|
||
|
|
padding-top: 0;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list::before {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list > div {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
width: auto !important;
|
||
|
|
padding-left: 60px;
|
||
|
|
min-height: 40px;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list > div::before {
|
||
|
|
top: 0;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list > div::after {
|
||
|
|
top: 10px;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .pass-list > div + div {
|
||
|
|
margin-left: 0;
|
||
|
|
margin-top: var(--indent-mini);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (max-width: 480px) {
|
||
|
|
body {
|
||
|
|
--w-screen: 16px;
|
||
|
|
|
||
|
|
--size-text-maintitle: 28px;
|
||
|
|
--size-text-title: 24px;
|
||
|
|
--size-text-subtitle: 20px;
|
||
|
|
|
||
|
|
--indent-huge: 24px;
|
||
|
|
--indent-big: 24px;
|
||
|
|
--indent-medium: 16px;
|
||
|
|
--indent-small: 16px;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .docs-list {
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .docs-list > div {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
:is(.ul, .fl) .container-inside .list-group .docs-list > div + div {
|
||
|
|
margin-left: 0;
|
||
|
|
margin-top: var(--indent-mini);
|
||
|
|
}
|
||
|
|
}
|