ildi-wp/dev/scss/components/_utility-menu.scss

45 lines
670 B
SCSS
Raw Permalink Normal View History

2018-10-07 14:41:41 -05:00
.utility-menu {
2018-07-24 18:52:51 -05:00
display: flex;
align-content: center;
align-items: center;
justify-content: flex-start;
margin: 0;
2018-08-10 15:08:34 -05:00
padding: $gutter 0;
width: 100%;
2018-07-24 18:52:51 -05:00
list-style: none;
line-height: 1;
li {
flex: 0 0 auto;
margin: 0;
padding: 2px 8px;
2018-08-10 15:08:34 -05:00
&:first-of-type {
padding-left: 0;
}
}
a {
text-decoration: none;
color: $di-purple;
font-size: 14px;
&:hover,
&:active {
border-bottom: 1px solid $di-purple;
color: $di-purple;
}
}
footer & {
justify-content: flex-end;
}
}
@media screen and (max-width: #{$screen-tablet - 1}) {
2018-10-07 14:41:41 -05:00
.utility-menu {
2018-08-10 15:08:34 -05:00
header & { display: none; }
2018-07-24 18:52:51 -05:00
}
}