2021-09-30 17:09:42 +00:00
|
|
|
|
|
|
|
.topnav {
|
2021-10-22 09:56:53 +00:00
|
|
|
background-color: #333e;
|
2021-09-30 17:09:42 +00:00
|
|
|
position: relative;
|
2021-10-14 07:52:51 +00:00
|
|
|
height: 68px;
|
|
|
|
padding: var(--spacing-2);
|
|
|
|
box-sizing: border-box;
|
2021-10-27 11:33:33 +00:00
|
|
|
z-index: 110;
|
|
|
|
|
2021-09-30 17:09:42 +00:00
|
|
|
@media screen and (max-width: 799px) {
|
2021-10-14 07:52:51 +00:00
|
|
|
padding-top: calc(var(--spacing) * 1.6);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 800px) {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
2021-09-30 17:09:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
display: block;
|
|
|
|
text-align: right;
|
|
|
|
@media screen and (max-width: 799px) {
|
2021-10-12 15:20:58 +00:00
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
2021-10-14 07:52:51 +00:00
|
|
|
margin-top: var(--spacing);
|
|
|
|
}
|
|
|
|
@media screen and (min-width: 800px) {
|
|
|
|
margin-left: auto;
|
2021-09-30 17:09:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 17px;
|
2021-10-14 07:52:51 +00:00
|
|
|
margin-left: var(--spacing);
|
2021-09-30 17:09:42 +00:00
|
|
|
|
2021-10-12 15:20:58 +00:00
|
|
|
@media screen and (max-width: 799px) {
|
|
|
|
&.title {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
div {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2021-09-30 17:09:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2021-10-14 07:52:51 +00:00
|
|
|
|
|
|
|
.title-text {
|
|
|
|
@media screen and (min-width: 800px) {
|
|
|
|
font-weight: 700;
|
|
|
|
padding-bottom: calc(var(--spacing) / 2);
|
|
|
|
}
|
2021-10-21 16:10:13 +00:00
|
|
|
}
|