2018-09-18 13:10:44 +03:00
|
|
|
:root {
|
|
|
|
--color-text-main: #1D202B;
|
|
|
|
--color-text-second: #7B7E89;
|
|
|
|
--color-line-gray: #E8E8EB;
|
|
|
|
--color-link-active: #388AE5;
|
2019-01-25 06:19:37 +03:00
|
|
|
--color-button-danger: #ff1629;
|
2019-01-25 02:23:00 +03:00
|
|
|
--color-gray-border: rgba(var(--color-line-gray), 0.48);
|
2018-09-18 13:10:44 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Site layout sizes
|
|
|
|
*/
|
|
|
|
--layout-padding-horisontal: 40px;
|
2018-10-04 22:08:21 +03:00
|
|
|
--layout-padding-vertical: 40px;
|
2018-10-15 22:06:01 +03:00
|
|
|
--layout-width-aside: 200px;
|
2018-09-18 13:10:44 +03:00
|
|
|
--layout-width-main-col: 650px;
|
2018-09-19 01:47:32 +03:00
|
|
|
|
|
|
|
--button {
|
|
|
|
display: inline-block;
|
2019-01-25 02:23:00 +03:00
|
|
|
padding: 9px 15px;
|
|
|
|
border-radius: 3px;
|
2019-01-25 06:19:37 +03:00
|
|
|
color: #6c6375;
|
|
|
|
background: #fcfcff;
|
|
|
|
box-shadow: inset 0 0 0 1px rgba(184, 189, 206, 0.2);
|
2018-09-19 01:47:32 +03:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1em;
|
2018-10-15 22:06:01 +03:00
|
|
|
text-decoration: none;
|
2019-01-25 06:19:37 +03:00
|
|
|
cursor: pointer;
|
2018-09-19 01:47:32 +03:00
|
|
|
|
|
|
|
svg {
|
|
|
|
margin: 0 0.3em 0 -0.05em;
|
|
|
|
}
|
2019-01-25 06:19:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
--button-danger {
|
|
|
|
background: var(--color-button-danger);
|
|
|
|
color: #fff;
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: color-mod(var(--color-button-danger) blackness(+10%));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
--button-primary {
|
|
|
|
background: var(--color-link-active);
|
|
|
|
color: #fff;
|
|
|
|
box-shadow: none;
|
2018-09-19 01:47:32 +03:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: color-mod(var(--color-link-active) blackness(+10%));
|
|
|
|
}
|
|
|
|
}
|
2018-09-18 13:10:44 +03:00
|
|
|
}
|