0be313316f
- Switch to the Hugo Pipes (bye bye Webpack) - Use Inter from Google Fonts - Update README
39 lines
621 B
CSS
39 lines
621 B
CSS
.header {
|
|
background: var(--header);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
padding: 20px;
|
|
|
|
&__right {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
|
|
@media (--phone) {
|
|
flex-direction: row-reverse;
|
|
}
|
|
}
|
|
|
|
&__inner {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin: 0 auto;
|
|
width: 760px;
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
|
|
.theme-toggle {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
line-height: 1;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.theme-toggler {
|
|
fill: currentColor;
|
|
}
|