c1230cc89e
Fix pagination misalignment
45 lines
686 B
SCSS
45 lines
686 B
SCSS
.pagination {
|
|
border-bottom: .5px solid $grey-2;
|
|
border-top: .5px solid $grey-2;
|
|
font-family: $serif-font;
|
|
padding: 1rem 0;
|
|
position: relative;
|
|
text-align: center;
|
|
|
|
span {
|
|
color: $default-shade;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.home {
|
|
color: $default-color;
|
|
font-family: $sans-font;
|
|
font-size: 1.1rem;
|
|
font-weight: 700;
|
|
|
|
&:hover,
|
|
&:focus, {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.arrow {
|
|
@include transition(all .3s ease-out);
|
|
color: $default-color;
|
|
position: absolute;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: $default-tint;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.left {
|
|
left: 0;
|
|
}
|
|
|
|
.right {
|
|
right: 0;
|
|
}
|
|
}
|