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

40 lines
543 B
SCSS
Raw Normal View History

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