2022-07-27 16:36:16 +02:00
|
|
|
.container {
|
|
|
|
|
max-width: 1000px;
|
|
|
|
|
margin: 0 auto;
|
2022-07-27 19:26:06 +02:00
|
|
|
padding: 0 1em;
|
2022-07-27 16:36:16 +02:00
|
|
|
}
|
|
|
|
|
|
2022-07-27 18:34:46 +02:00
|
|
|
.nav .container {
|
|
|
|
|
height: 3em;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-27 16:36:16 +02:00
|
|
|
.nav {
|
2022-07-27 18:34:46 +02:00
|
|
|
background-color: rgb(47, 46, 58);
|
2022-07-27 16:36:16 +02:00
|
|
|
height: 3em;
|
2022-07-27 18:34:46 +02:00
|
|
|
-webkit-box-shadow: 0px 3px 10px 1px rgba(122, 122, 122, 0.59);
|
|
|
|
|
-moz-box-shadow: 0px 3px 10px 1px rgba(122, 122, 122, 0.59);
|
|
|
|
|
box-shadow: 0px 3px 10px 1px rgba(122, 122, 122, 0.59);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav a {
|
|
|
|
|
text-decoration: none;
|
2022-07-27 19:26:06 +02:00
|
|
|
color: #e5e5ff;
|
2022-07-27 18:34:46 +02:00
|
|
|
transition: 0.3s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav a:hover {
|
|
|
|
|
color: #fff;
|
2022-07-27 19:26:06 +02:00
|
|
|
text-shadow: 0 0 5px #f2ef00;
|
2022-07-27 16:36:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-items {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
height: 100%;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-items {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-items div {
|
2022-07-27 19:26:06 +02:00
|
|
|
margin-left: 1em;
|
2022-07-27 16:36:16 +02:00
|
|
|
}
|
2022-07-27 18:34:46 +02:00
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
|
font-size: 2em;
|
2022-07-27 19:26:06 +02:00
|
|
|
font-weight: bold;
|
2022-07-27 18:34:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hamburger {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hamburger-menu {
|
|
|
|
|
background-color: rgba(84, 84, 84, 0.9);
|
|
|
|
|
z-index: 100;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
2022-07-27 19:26:06 +02:00
|
|
|
backdrop-filter: blur(3px) contrast(60%);
|
|
|
|
|
-webkit-backdrop-filter: blur(3px) contrast(60%);
|
2022-07-27 18:34:46 +02:00
|
|
|
top: 3em;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
2022-07-27 19:26:06 +02:00
|
|
|
align-items: flex-end;
|
2022-07-27 18:34:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hamburger-menu a {
|
|
|
|
|
font-size: 2em;
|
|
|
|
|
text-decoration: none;
|
2022-07-27 19:26:06 +02:00
|
|
|
margin-right: 1em;
|
2022-07-27 18:34:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
|
.hamburger {
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
.menu-items {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|