tale/_sass/tale/_pagination.scss

45 lines
655 B
SCSS
Raw Normal View History

2017-03-12 03:11:17 +00:00
.pagination {
2017-03-15 04:27:59 +00:00
border-top: .5px solid $grey-2;
2017-12-29 06:48:02 +00:00
font-family: $serif-secondary;
2017-03-24 03:10:58 +00:00
padding-top: 2rem;
2017-03-12 03:11:17 +00:00
position: relative;
text-align: center;
span {
color: $default-shade;
2017-03-12 10:44:45 +00:00
font-size: 1.1rem;
2017-03-12 03:11:17 +00:00
}
.top {
2017-03-24 03:10:58 +00:00
@include transition(all .3s ease-out);
color: $default-color;
2017-12-29 06:48:02 +00:00
font-family: $sans-serif;
font-size: 1.1rem;
2017-03-24 03:10:58 +00:00
opacity: .6;
&:hover {
2017-03-24 03:10:58 +00:00
opacity: 1;
}
}
.arrow {
2017-03-15 04:27:59 +00:00
@include transition(all .3s ease-out);
2017-03-12 03:11:17 +00:00
color: $default-color;
position: absolute;
2017-03-12 10:44:45 +00:00
&:hover,
&:focus {
2017-03-24 03:10:58 +00:00
opacity: .6;
text-decoration: none;
2017-03-12 03:11:17 +00:00
}
}
.left {
left: 0;
}
.right {
right: 0;
}
}