50 lines
654 B
SCSS
50 lines
654 B
SCSS
|
//
|
||
|
// 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%);
|
||
|
}
|
||
|
}
|
||
|
}
|