Skip to content

Instantly share code, notes, and snippets.

@manavsehgal
Created May 24, 2016 13:49
Show Gist options
  • Save manavsehgal/76d2d4d3651e4f46aca52897a45de1de to your computer and use it in GitHub Desktop.
Save manavsehgal/76d2d4d3651e4f46aca52897a45de1de to your computer and use it in GitHub Desktop.
Navigation component style using PostCSS processing
.navigation {
list-style: none;
background: $secondary;
margin: 0;
padding-right: 10px;
}
.sidenav {
list-style: none;
background: $golden-light;
margin: 0;
padding-right: 10px;
text-align: left;
padding-bottom: 20px;
margin-bottom: 20px;
border-bottom: 1px dashed $golden;
}
.navigation-link {
border-bottom: none;
border-bottom: 1px solid $secondary;
color: white;
&:hover {
border-bottom: 1px solid white;
}
&.active {
border-bottom: 1px solid white;
}
}
.sidenav-link {
border-bottom: none;
border-bottom: 1px solid $golden-light;
color: $primary;
&:hover {
border-bottom: 1px solid $primary;
}
&.active {
border-bottom: 1px solid $primary;
}
}
.navigation-brand {
font-weight: bold;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment