2022-04-08 12:25:22 +00:00
|
|
|
@import "../components/_link";
|
|
|
|
|
2022-04-26 09:26:30 +00:00
|
|
|
header {
|
|
|
|
z-index: 5;
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:25:22 +00:00
|
|
|
.nav__container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
padding-top: 5px;
|
2022-04-25 19:53:37 +00:00
|
|
|
border-bottom: 1px solid rgb(211, 211, 211);
|
2022-04-08 12:25:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav__home-btn {
|
|
|
|
font-weight: bold;
|
2022-04-26 09:26:30 +00:00
|
|
|
// font-family: monospace, monospace;
|
2022-04-08 12:25:22 +00:00
|
|
|
margin: auto;
|
|
|
|
margin-left: -10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav__hamburger-menu {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-07-01 06:07:19 +00:00
|
|
|
.nav__spacer--small {
|
|
|
|
width: 100px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:25:22 +00:00
|
|
|
.nav__spacer {
|
2022-07-01 06:07:19 +00:00
|
|
|
flex: 4;
|
2022-04-08 12:25:22 +00:00
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav__logo-container {
|
|
|
|
display: inline-flex;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav__logo-container:hover {
|
|
|
|
@include a_hover;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav__toggle {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav__logo {
|
|
|
|
display: inline-flex;
|
|
|
|
margin: auto;
|
|
|
|
padding: 5px;
|
|
|
|
width: 40px;
|
|
|
|
}
|
|
|
|
|
2022-07-01 06:07:19 +00:00
|
|
|
@mixin nav__link-group {
|
|
|
|
flex: 1.5;
|
2022-04-08 12:25:22 +00:00
|
|
|
list-style: none;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
align-self: center;
|
|
|
|
margin: auto;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-07-01 06:07:19 +00:00
|
|
|
.nav__link-group {
|
|
|
|
@include nav__link-group;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav__link-group--small {
|
|
|
|
@include nav__link-group;
|
|
|
|
flex: 0.5;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin nav__link-container {
|
2022-04-08 12:25:22 +00:00
|
|
|
display: flex;
|
|
|
|
padding: 10px;
|
|
|
|
height: 100%;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
2022-07-01 06:07:19 +00:00
|
|
|
.nav__link-container {
|
|
|
|
@include nav__link-container;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav__link-container--action {
|
|
|
|
@include nav__link-container;
|
|
|
|
background-color: green;
|
|
|
|
padding: 15px;
|
|
|
|
.nav__link {
|
|
|
|
color: white !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-08 12:25:22 +00:00
|
|
|
.nav__link {
|
|
|
|
text-decoration: none;
|
2022-04-25 19:16:32 +00:00
|
|
|
color: black !important;
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 14px;
|
2022-04-08 12:25:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav__link:hover {
|
|
|
|
@include a_hover;
|
|
|
|
}
|