website/assets/partials/_nav.scss

57 lines
1.1 KiB
SCSS
Raw Normal View History

2020-09-14 16:24:02 +02:00
nav {
background: rgb(60, 60, 90);
2020-09-21 10:59:52 +02:00
white-space: nowrap;
overflow-x: auto;
2020-09-14 16:24:02 +02:00
.container {
display: flex;
align-items: center;
2020-09-21 10:59:52 +02:00
.website-name {
2020-09-14 16:24:02 +02:00
a {
color: rgb(245, 245, 245);
text-decoration: none;
padding: 20px 30px;
display: block;
transition: background .2s;
}
a:hover {
background: rgb(50, 50, 75);
2020-09-14 16:24:02 +02:00
}
}
.website-nav {
margin-left: auto;
ul {
display: flex;
padding: 0;
2020-09-23 18:17:31 +02:00
margin: 0;
li {
list-style-type: none;
a {
color: rgb(245, 245, 245);
text-decoration: none;
padding: 20px 30px;
display: block;
transition: background .2s;
}
a:hover {
background: rgb(50, 50, 75);
}
.seperator {
padding: 20px 10px;
display: block;
}
}
2020-09-14 16:24:02 +02:00
}
}
}
}
2020-09-21 10:59:52 +02:00
@media (max-width: 600px) {
nav {
.container {
max-width: none;
2020-09-21 10:59:52 +02:00
.website-nav {
padding: 0 20px;
}
}
}
}