2018-09-18 13:10:44 +03:00
|
|
|
:root {
|
2019-03-13 12:25:43 +03:00
|
|
|
--color-text-main: #313649;
|
|
|
|
--color-text-second: #5d6068;
|
2018-09-18 13:10:44 +03:00
|
|
|
--color-line-gray: #E8E8EB;
|
2019-03-13 12:25:43 +03:00
|
|
|
--color-link-active: #2071cc;
|
|
|
|
--color-button-danger: #ff5159;
|
|
|
|
--color-bg-light: #f8f7fa;
|
2019-04-01 16:21:07 +03:00
|
|
|
--color-page-active: #ff1767;
|
2018-09-18 13:10:44 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Site layout sizes
|
|
|
|
*/
|
2019-03-13 12:25:43 +03:00
|
|
|
--layout-padding-horisontal: 30px;
|
|
|
|
--layout-padding-vertical: 30px;
|
|
|
|
--layout-width-aside: 300px;
|
2018-09-18 13:10:44 +03:00
|
|
|
--layout-width-main-col: 650px;
|
2018-09-19 01:47:32 +03:00
|
|
|
|
2019-02-15 17:56:56 +03:00
|
|
|
@media (--mobile) {
|
|
|
|
--layout-padding-horisontal: 15px;
|
|
|
|
--layout-padding-vertical: 15px;
|
|
|
|
}
|
|
|
|
|
2019-03-13 12:25:43 +03:00
|
|
|
--font-mono: Menlo,Monaco,Consolas,Courier New,monospace;
|
|
|
|
|
|
|
|
--font-serif {
|
|
|
|
font-family: "Lucida Grande","Lucida Sans Unicode","Lucida Sans", Geneva, Arial, sans-serif;
|
|
|
|
letter-spacing: -0.03em;
|
|
|
|
}
|
|
|
|
|
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;
|
2019-02-15 17:56:56 +03:00
|
|
|
white-space: nowrap;
|
2019-03-13 12:25:43 +03:00
|
|
|
-webkit-appearance: none;
|
|
|
|
border: 0;
|
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
|
|
|
}
|
2019-02-15 17:56:56 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom media queries
|
|
|
|
*/
|
2021-04-19 17:57:33 +03:00
|
|
|
@custom-media --wide-desktop all and (min-width: 1300px);
|
2019-02-15 17:56:56 +03:00
|
|
|
@custom-media --desktop all and (min-width: 1050px);
|
2021-04-19 17:57:33 +03:00
|
|
|
@custom-media --tablet all and (min-width: 980px) and (max-width: 1050px);
|
2019-02-15 17:56:56 +03:00
|
|
|
@custom-media --mobile all and (max-width: 980px);
|
|
|
|
@custom-media --retina all and (-webkit-min-device-pixel-ratio: 1.5);
|