hugo-coder-fork/assets/scss/_pagination.scss

33 lines
556 B
SCSS
Raw Permalink Normal View History

.pagination {
2020-02-02 17:13:35 +00:00
margin-top: 6rem;
text-align: center;
2019-02-10 22:56:07 +00:00
font-family: $heading-font-family;
2020-02-19 22:26:24 +00:00
display: flex;
justify-content: center;
align-items: center;
font-size: 2rem;
li {
2020-02-19 22:26:24 +00:00
display: flex;
justify-content: center;
align-items: center;
> a,
&.current-page {
margin: 0;
2020-02-19 22:26:24 +00:00
padding: 0 0.25em;
font-family: $heading-font-family;
2020-02-02 17:13:35 +00:00
font-weight: $heading-font-weight;
2020-02-19 22:26:24 +00:00
}
> a {
display: block;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
}