Files
makyo.ink/assets/css/sass/parts/_pagination.scss
2017-09-06 21:48:07 -06:00

28 lines
409 B
SCSS

.pagination {
margin-bottom: 30px;
.previous {
float: left;
}
.next {
float: right;
}
.previous, .next {
text-decoration: none;
text-transform: uppercase;
font-size: 14px;
color: $dark-gray;
&:hover {
opacity: .8;
color: $dark-pink;
}
.invert & {
color: $light-gray;
&:hover {
color: $light-pink;
}
}
}
}