Files
makyo.ink/assets/css/sass/parts/_pagination.scss
2017-09-06 13:04:59 -06:00

20 lines
297 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;
}
}
}