2018-09-18 13:10:44 +03:00
|
|
|
.docs-header {
|
|
|
|
display: flex;
|
2019-02-15 17:56:56 +03:00
|
|
|
flex-shrink: 0;
|
2018-09-18 13:10:44 +03:00
|
|
|
padding: 0 var(--layout-padding-horisontal);
|
2019-01-25 02:23:00 +03:00
|
|
|
border-bottom: 1px solid var(--color-line-gray);
|
|
|
|
font-size: 15.8px;
|
|
|
|
line-height: 50px;
|
2019-02-15 17:56:56 +03:00
|
|
|
flex-wrap: wrap;
|
|
|
|
position: relative;
|
2018-09-18 13:10:44 +03:00
|
|
|
|
2019-02-18 11:15:03 +03:00
|
|
|
@media (--mobile){
|
|
|
|
line-height: 40px;
|
|
|
|
}
|
|
|
|
|
2018-09-18 13:10:44 +03:00
|
|
|
a {
|
|
|
|
display: inline-block;
|
2019-01-25 02:23:00 +03:00
|
|
|
text-decoration: none;
|
2018-09-18 13:10:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
&__logo {
|
|
|
|
font-weight: bold;
|
2018-09-19 01:47:32 +03:00
|
|
|
color: inherit;
|
2018-09-18 13:10:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
&__menu {
|
|
|
|
display: flex;
|
|
|
|
margin: 0 0 0 auto;
|
2019-02-15 17:56:56 +03:00
|
|
|
padding-left: 0;
|
|
|
|
|
|
|
|
@media (--mobile) {
|
|
|
|
flex-basis: 100%;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
2018-09-18 13:10:44 +03:00
|
|
|
|
|
|
|
li {
|
2019-02-15 17:56:56 +03:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
2018-09-18 13:10:44 +03:00
|
|
|
list-style: none;
|
|
|
|
margin-left: 20px;
|
2019-02-15 17:56:56 +03:00
|
|
|
|
|
|
|
@media (--mobile) {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-add {
|
|
|
|
@media (--mobile) {
|
|
|
|
position: absolute;
|
|
|
|
right: 15px;
|
|
|
|
top: 15px;
|
|
|
|
line-height: 1em;
|
|
|
|
margin: 0 !important;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
@media (--mobile) {
|
|
|
|
font-size: 0;
|
|
|
|
padding: 8px;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
2018-09-18 13:10:44 +03:00
|
|
|
}
|
2018-09-19 01:47:32 +03:00
|
|
|
|
|
|
|
a:not(.docs-header__button) {
|
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--color-link-active);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__button {
|
|
|
|
@apply --button;
|
2019-01-25 06:19:37 +03:00
|
|
|
@apply --button-primary;
|
2018-09-19 01:47:32 +03:00
|
|
|
margin: auto 30px auto auto;
|
2018-09-18 13:10:44 +03:00
|
|
|
}
|
|
|
|
}
|