hexo-theme-mengd
Version:
A clean and lightweight Hexo theme
44 lines (39 loc) • 889 B
text/stylus
.pagination {
--color: #00c4b6;
font-size: 16px;
margin-top: 1.66rem;
display: flex;
background: var(--main-color);
border-radius: 4px;
align-items: center;
justify-content: center;
.page-number.current {
color: #fff;
background: var(--color);
}
.page-number {
--size: 1.2em;
display: inline-block;
margin: 0 0.2em;
width: var(--size);
height: var(--size);
color: var(--color);
text-align: center;
line-height: var(--size);
}
.prev, .next {
color: var(--color);
display: inline-flex;
align-items: center;
}
svg {
--size: 1.3em;
width: var(--size);
height: var(--size);
}
}
@media (max-width: 1000px) {
.pagination {
width: unset;
}
}