mirror of
https://github.com/danbee/danbarber.me
synced 2025-03-04 08:59:10 +00:00
41 lines
520 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|