1
0
mirror of https://github.com/danbee/danbarber.me synced 2025-03-04 08:59:10 +00:00
danbarber.me/_assets/stylesheets/components/_pagination.scss
2018-11-10 16:17:37 -05:00

41 lines
520 B
SCSS

.pagination {
font-size: 0.95em;
height: 1.5em;
padding: {
bottom: 1.5em;
top: 1.5em;
};
position: relative;
&:after {
clear: both;
content: "";
display: block;
}
a {
color: $text-color-light;
text-decoration: none;
&:hover {
color: $link-color-hover;
}
&[href*=archive] {
&:before,
&:after {
content: "";
padding: 0 0.3em;
}
}
&.prev {
float: left;
}
&.next {
float: right;
}
}
}