28 lines
432 B
SCSS
28 lines
432 B
SCSS
header {
|
|
width: 100%;
|
|
background-color: $secondary-bg-color;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.header-container {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
max-width: 1000px;
|
|
margin: 10px 20px;
|
|
}
|
|
|
|
.header-container a {
|
|
margin-right: auto;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
color: $text-color;
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
.header-container a:hover {
|
|
margin: 0;
|
|
margin-right: auto;
|
|
}
|