akkounts/app/assets/stylesheets/main_nav.scss
Sebastian Kippe c62ce00184
Add main navigation bar
Make donations and invitations accessible to everyone
2020-12-27 14:03:40 +01:00

32 lines
504 B
SCSS

@import "variables";
#main-nav {
width: 100%;
text-align: center;
background-color: #efefef;
.wrapper {
width: $content-width;
max-width: $content-max-width;
margin: 0 auto;
}
ul {
li {
display: inline;
a {
display: inline-block;
padding: 1.5rem;
text-decoration: none;
color: $text-color-discreet;
&.active {
color: $text-color-body;
border-bottom: 2px solid #ffd000;
}
}
}
}
}