tale/_sass/_pagination.scss
Chester How 4850bf9612 Major style change on home page
Added Palatino font
2017-03-21 12:49:35 +08:00

46 lines
687 B
SCSS

.pagination {
border-bottom: .5px solid $grey-2;
border-top: .5px solid $grey-2;
font-family: $baskerville;
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;
}
}