mirror of
https://github.com/10h30/yeuchaybo.git
synced 2026-07-11 10:46:17 +09:00
42 lines
697 B
SCSS
42 lines
697 B
SCSS
/* ## Pagination
|
|
--------------------------------------------- */
|
|
|
|
.pagination {
|
|
clear: both;
|
|
margin: 60px 0;
|
|
}
|
|
|
|
.adjacent-entry-pagination {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.archive-pagination {
|
|
|
|
li {
|
|
display: inline;
|
|
|
|
a {
|
|
display: inline-block;
|
|
margin-bottom: 4px;
|
|
padding: 8px 12px;
|
|
color: $archive-pagination--font-color;
|
|
background-color: $archive-pagination--background-color;
|
|
font-size: $archive-pagination--font-size;
|
|
font-weight: $font-weight--semibold;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
a:focus,
|
|
a:hover,
|
|
&.active a {
|
|
color: $archive-pagination--font-color-hover;
|
|
background-color: $archive-pagination--background-color-hover;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|