This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/web/themes/dcb2017/sass/components/_menus.scss
2017-04-24 11:31:29 +01:00

40 lines
543 B
SCSS

ul.menu {
margin: 0;
padding: 0;
text-align: center;
@include media-tablet {
text-align: left;
}
li.menu-item {
display: inline-block;
padding: 0.5rem 1rem;
text-transform: uppercase;
@include media-tablet {
padding: 1rem 0.8rem;
}
a {
color: black;
text-decoration: none;
&:hover,
&:focus,
&.is-active {
color: $dcb-green;
}
}
}
}
nav.menu--main {
font-weight: bold;
@include media-tablet {
margin: 0.8rem;
float: right;
}
}