tale/_sass/_pagination.scss
2017-03-24 11:13:52 +08:00

46 lines
662 B
SCSS

.pagination {
border-top: .5px solid $grey-2;
font-family: $palatino;
padding-top: 2rem;
position: relative;
text-align: center;
span {
color: $default-shade;
font-size: 1.1rem;
}
.home {
@include transition(all .3s ease-out);
color: $default-color;
font-family: $sans-font;
font-size: 1.1rem;
opacity: .6;
&:hover,
&:focus, {
opacity: 1;
}
}
.arrow {
@include transition(all .3s ease-out);
color: $default-color;
position: absolute;
&:hover,
&:focus {
opacity: .6;
text-decoration: none;
}
}
.left {
left: 0;
}
.right {
right: 0;
}
}