datat.fi/_sass/basically-basic/_navigation.scss

50 lines
654 B
SCSS
Raw Normal View History

2017-03-07 23:12:17 +02:00
//
// Navigation
//
.menu {
@include list-unstyled;
a {
color: inherit;
text-decoration: none;
}
}
//
// Paginator
//
.pager {
@include clearfix();
margin-bottom: 2rem;
ul {
@include list-unstyled;
display: flex;
> li {
flex: 1;
justify-content: space-between;
}
li + li {
margin-left: 0.125em;
}
}
a {
display: block;
padding: 1em;
color: #fff;
font-weight: bold;
text-align: center;
text-decoration: none;
background-color: $accent-color;
border-radius: $border-radius;
&:hover {
background-color: tint($accent-color, 20%);
}
}
}