website/assets/partials/_nav.scss
2020-09-29 19:37:50 +02:00

58 lines
1.1 KiB
SCSS

nav {
background: rgb(60, 60, 90);
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
.container {
align-items: center;
display: flex;
height: 64px;
.website-name {
a {
color: rgb(245, 245, 245);
display: block;
padding: 20px 30px;
text-decoration: none;
transition: background .2s;
&:hover {
background: rgb(50, 50, 75);
}
}
}
.website-nav {
margin-left: auto;
ul {
display: flex;
margin: 0;
padding: 0;
li {
list-style-type: none;
a {
color: rgb(245, 245, 245);
display: block;
text-decoration: none;
transition: background .2s;
padding: 20px 30px;
&:hover {
background: rgb(50, 50, 75);
}
}
.seperator {
display: block;
padding: 20px 10px;
}
}
}
}
}
}
@media (max-width: 600px) {
nav {
.container {
max-width: none;
.website-nav {
padding: 0 20px;
}
}
}
}