cromium
This commit is contained in:
parent
5d14608f1e
commit
66cbff1b2b
2 changed files with 511 additions and 543 deletions
|
|
@ -104,11 +104,11 @@ body {
|
|||
a {
|
||||
color: var(--color-link);
|
||||
text-decoration: none;
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
}
|
||||
a:hover,
|
||||
a:focus,
|
||||
a:active {
|
||||
color: var(--color-link-hover);
|
||||
}
|
||||
}
|
||||
|
||||
button, a.btn {
|
||||
|
|
@ -123,24 +123,24 @@ button, a.btn {
|
|||
border: 1px solid transparent;
|
||||
border-radius: 4px;
|
||||
background: var(--color-link);
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
}
|
||||
button:hover, a.btn:hover,
|
||||
button:focus, a.btn:focus,
|
||||
button:active, a.btn:active {
|
||||
background: var(--color-link-hover);
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
.btn.btn-secondary {
|
||||
color: var(--color-link);
|
||||
border-color: var(--color-link);
|
||||
background-color: transparent;
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
}
|
||||
.btn.btn-secondary:hover,
|
||||
.btn.btn-secondary:focus,
|
||||
.btn.btn-secondary:active {
|
||||
color: var(--color-link-hover);
|
||||
border-color: var(--color-link-hover);
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.header {
|
||||
|
|
@ -152,17 +152,16 @@ button, a.btn {
|
|||
padding: 0 var(--w-screen);
|
||||
border: 0;
|
||||
background-color: var(--color-bg-main);
|
||||
|
||||
.header-logo {
|
||||
}
|
||||
.header .header-logo {
|
||||
width: 62px;
|
||||
height: 40px;
|
||||
background: url(../img/svg/mil-logo.svg) no-repeat 0 50%;
|
||||
}
|
||||
.header-title {
|
||||
}
|
||||
.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);
|
||||
|
|
@ -193,163 +192,160 @@ button, a.btn {
|
|||
padding: 0 var(--w-screen);
|
||||
background-color: var(--bg-light);
|
||||
overflow: auto;
|
||||
|
||||
.short-text {
|
||||
}
|
||||
.container-inside .short-text {
|
||||
max-width: 60%;
|
||||
}
|
||||
.paragraph-left .short-text {
|
||||
}
|
||||
.container-inside .paragraph-left .short-text {
|
||||
max-width: 70%;
|
||||
}
|
||||
.block-group {
|
||||
}
|
||||
.container-inside .block-group {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
margin: auto;
|
||||
}
|
||||
.block {
|
||||
}
|
||||
.container-inside .block {
|
||||
font-family: 'Inter';
|
||||
min-width: 355px;
|
||||
padding: 40px;
|
||||
border-radius: 12px;
|
||||
background-color: var(--white);
|
||||
box-shadow: var(--bg-shadow);
|
||||
|
||||
& > div {
|
||||
}
|
||||
.container-inside .block > div {
|
||||
max-width: 350px;
|
||||
}
|
||||
& + .block {
|
||||
}
|
||||
.container-inside .block + .block {
|
||||
margin-left: 40px;
|
||||
}
|
||||
.block-img {
|
||||
}
|
||||
.container-inside .block .block-img {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
}
|
||||
&.block-ul .block-img {
|
||||
}
|
||||
.container-inside .block.block-ul .block-img {
|
||||
background-image: url(../img/svg/ul.svg);
|
||||
}
|
||||
&.block-fl .block-img {
|
||||
}
|
||||
.container-inside .block.block-fl .block-img {
|
||||
background-image: url(../img/svg/fl.svg);
|
||||
}
|
||||
.block-title {
|
||||
}
|
||||
.container-inside .block .block-title {
|
||||
font-family: 'GolosB';
|
||||
font-size: var(--size-text-subtitle);
|
||||
margin-top: var(--indent-mini);
|
||||
}
|
||||
.block-description {
|
||||
}
|
||||
.container-inside .block .block-description {
|
||||
font-family: 'Golos';
|
||||
font-size: var(--size-text-primary);
|
||||
margin-top: var(--indent-mini);
|
||||
}
|
||||
.btn {
|
||||
}
|
||||
.container-inside .block .btn {
|
||||
width: auto;
|
||||
margin-top: var(--indent-medium);
|
||||
}
|
||||
}
|
||||
}
|
||||
:is(.ul, .fl) .container-inside {
|
||||
padding: 0;
|
||||
background-color: var(--white);
|
||||
|
||||
.btn-group {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .btn-group {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
||||
.btn + .btn {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .btn-group .btn + .btn {
|
||||
margin-left: var(--indent-mini);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.list-group {
|
||||
:is(.ul, .fl) .container-inside .list-group {
|
||||
position: relative;
|
||||
padding: 0 var(--w-screen);
|
||||
|
||||
.btn {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .btn {
|
||||
width: max-content;
|
||||
}
|
||||
.title {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .title {
|
||||
font-size: var(--size-text-maintitle);
|
||||
font-family: 'GolosB';
|
||||
margin-bottom: var(--indent-huge);
|
||||
}
|
||||
.subtitle {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .subtitle {
|
||||
font-size: var(--size-text-title);
|
||||
font-family: 'GolosDB';
|
||||
margin-bottom: var(--indent-big);
|
||||
}
|
||||
.muted {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .muted {
|
||||
color: var(--color-light);
|
||||
}
|
||||
.paragraph {
|
||||
}
|
||||
|
||||
:is(.ul, .fl) .container-inside .list-group .paragraph {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
||||
.paragraph-left {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .paragraph .paragraph-left {
|
||||
width: 40%;
|
||||
}
|
||||
.paragraph-right {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .paragraph .paragraph-right {
|
||||
width: 60%;
|
||||
}
|
||||
.paragraph-half {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .paragraph .paragraph-half {
|
||||
width: 50%;
|
||||
}
|
||||
.paragraph-third {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .paragraph .paragraph-third {
|
||||
width: 33.33%;
|
||||
}
|
||||
[class*="paragraph-"] + [class*="paragraph-"] {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .paragraph [class*="paragraph-"] + [class*="paragraph-"] {
|
||||
margin-left: 40px;
|
||||
}
|
||||
.text {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .paragraph .text {
|
||||
font-family: 'InterSB';
|
||||
font-size: var(--size-text-primary);
|
||||
margin-bottom: var(--indent-mini);
|
||||
}
|
||||
.icon-checklist, .icon-clock, .icon-text {
|
||||
}
|
||||
: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;
|
||||
|
||||
&.icon-checklist {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .paragraph .icon-checklist {
|
||||
background: url(../img/svg/checklist-32x32.svg) no-repeat 0 0;
|
||||
}
|
||||
&.icon-clock {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .paragraph .icon-clock {
|
||||
background: url(../img/svg/clock-32x32.svg) no-repeat 0 0;
|
||||
}
|
||||
&.icon-text {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .paragraph .icon-text {
|
||||
background: url(../img/svg/text-32x32.svg) no-repeat 0 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
.list {
|
||||
& > div {
|
||||
}
|
||||
|
||||
:is(.ul, .fl) .container-inside .list-group .list > div {
|
||||
position: relative;
|
||||
padding-left: 36px;
|
||||
|
||||
& + div {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .list > div + div {
|
||||
margin-top: var(--indent-mini);
|
||||
}
|
||||
&::after {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .list > div::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
&.esia::after {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .list > div.esia::after {
|
||||
background: url(../img/svg/esia-24x24.svg) no-repeat 0 0;
|
||||
}
|
||||
&.case::after {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .list > div.case::after {
|
||||
background: url(../img/svg/case-24x24.svg) no-repeat 0 0;
|
||||
}
|
||||
&.user::after {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .list > div.user::after {
|
||||
background: url(../img/svg/user-24x24.svg) no-repeat 0 0;
|
||||
}
|
||||
&.romb::after {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .list > div.romb::after {
|
||||
background: url(../img/svg/romb-24x24.svg) no-repeat 0 0;
|
||||
}
|
||||
}
|
||||
& ~ .btn-group {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .list ~ .btn-group {
|
||||
margin-top: var(--indent-medium);
|
||||
}
|
||||
}
|
||||
.section-group > div {
|
||||
}
|
||||
|
||||
:is(.ul, .fl) .container-inside .list-group .section-group > div {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 48px;
|
||||
|
|
@ -358,11 +354,11 @@ button, a.btn {
|
|||
margin-bottom: 16px;
|
||||
border-radius: 4px;
|
||||
background-color: var(--bg-form);
|
||||
|
||||
&:last-child {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .section-group > div:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
&::before {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .section-group > div::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 16px;
|
||||
|
|
@ -372,40 +368,40 @@ button, a.btn {
|
|||
background-color: var(--color-bg-main);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 50% 50%;
|
||||
}
|
||||
&.icon-user::before {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .section-group > div.icon-user::before {
|
||||
background-image: url(../img/svg/pers-wt.svg);
|
||||
}
|
||||
&.icon-case::before {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .section-group > div.icon-case::before {
|
||||
background-image: url(../img/svg/case-wt.svg);
|
||||
}
|
||||
&.icon-shield::before {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .section-group > div.icon-shield::before {
|
||||
background-image: url(../img/svg/shield-wt.svg);
|
||||
}
|
||||
&.icon-clip::before {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .section-group > div.icon-clip::before {
|
||||
background-image: url(../img/svg/clip-wt.svg);
|
||||
}
|
||||
&.icon-pers::before {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .section-group > div.icon-pers::before {
|
||||
background-image: url(../img/svg/pers-wt.svg);
|
||||
}
|
||||
&.icon-building::before {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .section-group > div.icon-building::before {
|
||||
background-image: url(../img/svg/building-wt.svg);
|
||||
}
|
||||
.muted {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .section-group > div .muted {
|
||||
margin-top: 12px;
|
||||
}
|
||||
.detailed {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .section-group > div .muted .detailed {
|
||||
color: var(--color-text-primary);
|
||||
font-family: 'InterB';
|
||||
}
|
||||
}
|
||||
.pass-list {
|
||||
}
|
||||
|
||||
:is(.ul, .fl) .container-inside .list-group .pass-list {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
padding-top: 60px;
|
||||
|
||||
&::before {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .pass-list::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: calc(80% + 40px);
|
||||
|
|
@ -413,12 +409,12 @@ button, a.btn {
|
|||
top: 18px;
|
||||
left: 0;
|
||||
background-color: var(--color-link-hover);
|
||||
}
|
||||
& > div {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .pass-list > div {
|
||||
position: relative;
|
||||
width: 20%;
|
||||
|
||||
&::before {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .pass-list > div::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 32px;
|
||||
|
|
@ -429,75 +425,74 @@ button, a.btn {
|
|||
border: 4px solid var(--color-link-hover);
|
||||
background-color: var(--bg-light);
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
&::after {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .pass-list > div::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
font-family: 'InterB';
|
||||
top: -50px;
|
||||
left: 15px;
|
||||
}
|
||||
&:nth-child(1)::after {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .pass-list > div:nth-child(1)::after {
|
||||
content: "1";
|
||||
}
|
||||
&:nth-child(2)::after {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .pass-list > div:nth-child(2)::after {
|
||||
content: "2";
|
||||
}
|
||||
&:nth-child(3)::after {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .pass-list > div:nth-child(3)::after {
|
||||
content: "3";
|
||||
}
|
||||
&:nth-child(4)::after {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .pass-list > div:nth-child(4)::after {
|
||||
content: "4";
|
||||
}
|
||||
&:nth-child(5)::after {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .pass-list > div:nth-child(5)::after {
|
||||
content: "5";
|
||||
}
|
||||
& + div {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .pass-list > div + div {
|
||||
margin-left: 40px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.msg-list {
|
||||
}
|
||||
|
||||
:is(.ul, .fl) .container-inside .list-group .msg-list {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 8px;
|
||||
|
||||
span {
|
||||
}
|
||||
: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;
|
||||
}
|
||||
}
|
||||
.docs-list {
|
||||
}
|
||||
|
||||
:is(.ul, .fl) .container-inside .list-group .docs-list {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
||||
& > div {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .docs-list > div {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
width: 20%;
|
||||
|
||||
a {
|
||||
}
|
||||
: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;
|
||||
}
|
||||
& + div {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .docs-list > div + div {
|
||||
margin-left: 40px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.lk-what {
|
||||
}
|
||||
|
||||
:is(.ul, .fl) .container-inside .list-group.lk-what {
|
||||
padding-top: var(--indent-huge);
|
||||
padding-bottom: var(--indent-huge);
|
||||
&::after {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group.lk-what::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
|
|
@ -507,146 +502,131 @@ button, a.btn {
|
|||
opacity: 0.12;
|
||||
background: url(../img/svg/bg-star.svg) no-repeat calc(100% + 200px) -180px transparent;
|
||||
z-index: 0;
|
||||
}
|
||||
& > div {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group.lk-what > div {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
&.lk-access {
|
||||
}
|
||||
|
||||
: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);
|
||||
}
|
||||
&.lk-info {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group.lk-info {
|
||||
padding-top: var(--indent-big);
|
||||
padding-bottom: var(--indent-big);
|
||||
}
|
||||
&.lk-pass {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group.lk-pass {
|
||||
padding-top: var(--indent-big);
|
||||
padding-bottom: var(--indent-big);
|
||||
background-color: var(--bg-light);
|
||||
}
|
||||
&.lk-when {
|
||||
}
|
||||
: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);
|
||||
}
|
||||
&.lk-msg {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group.lk-msg {
|
||||
background-color: var(--border-light);
|
||||
}
|
||||
&.lk-limits {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group.lk-limits {
|
||||
padding-top: var(--indent-big);
|
||||
padding-bottom: var(--indent-big);
|
||||
}
|
||||
&.lk-docs {
|
||||
}
|
||||
: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);
|
||||
}
|
||||
&.lk-alert {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group.lk-alert {
|
||||
padding-top: var(--indent-big);
|
||||
padding-bottom: var(--indent-big);
|
||||
background-color: var(--bg-light);
|
||||
}
|
||||
&.lk-footer {
|
||||
}
|
||||
: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 {
|
||||
:is(.fl) .container-inside .list-group.lk-what .title {
|
||||
color: var(--color-link);
|
||||
margin-bottom: var(--indent-small);
|
||||
|
||||
&::after {
|
||||
}
|
||||
: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);
|
||||
}
|
||||
& + .short-text {
|
||||
}
|
||||
:is(.fl) .container-inside .list-group.lk-what .title + .short-text {
|
||||
max-width: 25%;
|
||||
}
|
||||
& ~ .subtitle {
|
||||
}
|
||||
:is(.fl) .container-inside .list-group.lk-what .title ~ .subtitle {
|
||||
margin-top: var(--indent-big);
|
||||
}
|
||||
}
|
||||
&.lk-info .section-group > div {
|
||||
}
|
||||
:is(.fl) .container-inside .list-group.lk-info .section-group > div {
|
||||
justify-content: center;
|
||||
}
|
||||
&.lk-pass {
|
||||
.subtitle {
|
||||
}
|
||||
:is(.fl) .container-inside .list-group.lk-pass .subtitle {
|
||||
margin-bottom: 0;
|
||||
& + div {
|
||||
}
|
||||
:is(.fl) .container-inside .list-group.lk-pass .subtitle + div {
|
||||
margin-top: var(--indent-small);
|
||||
margin-bottom: var(--indent-big);
|
||||
}
|
||||
}
|
||||
.pass-list {
|
||||
&::before {
|
||||
}
|
||||
:is(.fl) .container-inside .list-group.lk-pass .pass-list::before {
|
||||
display: none;
|
||||
}
|
||||
& > div {
|
||||
}
|
||||
:is(.fl) .container-inside .list-group.lk-pass .pass-list > div {
|
||||
position: relative;
|
||||
width: 33.33%;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.lk-msg {
|
||||
}
|
||||
:is(.fl) .container-inside .list-group.lk-msg {
|
||||
color: var(--color-link);
|
||||
font-family: 'InterSB';
|
||||
background-color: var(--bg-form);
|
||||
|
||||
span {
|
||||
}
|
||||
:is(.fl) .container-inside .list-group.lk-msg span {
|
||||
background: url(../img/svg/info.svg) no-repeat 0 4px;
|
||||
}
|
||||
}
|
||||
&.lk-limits {
|
||||
.subtitle {
|
||||
}
|
||||
:is(.fl) .container-inside .list-group.lk-limits .subtitle {
|
||||
margin-bottom: 0;
|
||||
& + div {
|
||||
}
|
||||
:is(.fl) .container-inside .list-group.lk-limits .subtitle + div {
|
||||
margin-top: var(--indent-small);
|
||||
margin-bottom: var(--indent-big);
|
||||
}
|
||||
}
|
||||
.scheme {
|
||||
}
|
||||
:is(.fl) .container-inside .list-group.lk-limits .scheme {
|
||||
width: 100%;
|
||||
height: 204px;
|
||||
background: url(../img/svg/scheme.svg) no-repeat 0 0;
|
||||
}
|
||||
}
|
||||
&.lk-alert {
|
||||
& > .short-text {
|
||||
}
|
||||
:is(.fl) .container-inside .list-group.lk-alert > .short-text {
|
||||
margin-bottom: var(--indent-big);
|
||||
}
|
||||
.alert-block {
|
||||
}
|
||||
: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);
|
||||
|
||||
&::after {
|
||||
}
|
||||
: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);
|
||||
}
|
||||
& > div + div {
|
||||
}
|
||||
:is(.fl) .container-inside .list-group.lk-alert .alert-block > div + div {
|
||||
margin-top: var(--indent-small);
|
||||
}
|
||||
& > div:last-child {
|
||||
}
|
||||
:is(.fl) .container-inside .list-group.lk-alert .alert-block > div:last-child {
|
||||
color: var(--color-link);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*@media ((max-width: 780px) or ((orientation: landscape) and (max-device-width : 1024px))) {*/
|
||||
|
|
@ -671,58 +651,51 @@ button, a.btn {
|
|||
.container-inside .block-group {
|
||||
flex-direction: column;
|
||||
margin: 0;
|
||||
|
||||
.block {
|
||||
}
|
||||
.container-inside .block-group .block {
|
||||
min-width: auto;
|
||||
margin: var(--indent-huge) 0 0;
|
||||
& > div {
|
||||
}
|
||||
.container-inside .block-group .block > div {
|
||||
max-width: inherit !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group {
|
||||
.paragraph {
|
||||
:is(.ul, .fl) .container-inside .list-group .paragraph {
|
||||
flex-direction: column;
|
||||
|
||||
[class*="paragraph-"] {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .paragraph [class*="paragraph-"] {
|
||||
width: auto;
|
||||
margin-left: 0;
|
||||
}
|
||||
[class*="paragraph-"] + [class*="paragraph-"] {
|
||||
:is(.ul, .fl) .container-inside .list-group .paragraph [class*="paragraph-"] + [class*="paragraph-"] {
|
||||
margin-top: var(--indent-mini);
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
.pass-list {
|
||||
:is(.ul, .fl) .container-inside .list-group .pass-list {
|
||||
flex-direction: column;
|
||||
padding-top: 0;
|
||||
|
||||
&::before {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .pass-list::before {
|
||||
display: none;
|
||||
}
|
||||
& > div {
|
||||
:is(.ul, .fl) .container-inside .list-group .pass-list > div {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: auto !important;
|
||||
padding-left: 60px;
|
||||
min-height: 40px;
|
||||
|
||||
&::before {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .pass-list > div::before {
|
||||
top: 0;
|
||||
}
|
||||
&::after {
|
||||
:is(.ul, .fl) .container-inside .list-group .pass-list > div::after {
|
||||
top: 10px;
|
||||
}
|
||||
& + div {
|
||||
: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;
|
||||
|
|
@ -736,18 +709,14 @@ button, a.btn {
|
|||
--indent-medium: 16px;
|
||||
--indent-small: 16px;
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group {
|
||||
.docs-list {
|
||||
:is(.ul, .fl) .container-inside .list-group .docs-list {
|
||||
flex-direction: column;
|
||||
|
||||
& > div {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .docs-list > div {
|
||||
width: 100%;
|
||||
|
||||
& + div {
|
||||
}
|
||||
:is(.ul, .fl) .container-inside .list-group .docs-list > div + div {
|
||||
margin-left: 0;
|
||||
margin-top: var(--indent-mini);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -120,7 +120,6 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="list-group lk-footer"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue