2020-06-19 23:47:44 +02:00
|
|
|
.site-head {
|
|
|
|
padding-top: 3rem;
|
|
|
|
padding-bottom: 1.5rem;
|
|
|
|
|
2020-07-17 13:33:39 +02:00
|
|
|
&__inner {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2020-06-19 23:47:44 +02:00
|
|
|
&__site-name {
|
|
|
|
font-weight: 700;
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--color-text);
|
2020-06-26 16:32:56 +02:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline-color: var(--color-secondary);
|
|
|
|
}
|
2020-06-19 23:47:44 +02:00
|
|
|
}
|
|
|
|
}
|
2020-07-17 13:33:39 +02:00
|
|
|
|
|
|
|
@media (max-width: 575.98px) {
|
|
|
|
.site-head {
|
|
|
|
&__inner {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__site-name {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
}
|
2020-07-17 15:57:08 +02:00
|
|
|
}
|