Files
com.xaymar.www/_sass/_pagination.scss
T

45 lines
866 B
SCSS
Raw Normal View History

2022-11-25 22:44:47 +01:00
.pager {
display: block;
width: fit-content;
margin: 1rem auto;
padding: 0;
list-style: none inside;
}
.pager > li {
display: inline-block;
margin: 0 .25rem;
padding: 0;
font-weight: bold;
font-size: 1.333rem;
line-height: 1.333rem;
vertical-align: top;
background: $theme-pagination-background;
box-shadow: $theme-pagination-shadow;
color: $theme-pagination-color;
}
.pager > li:hover,
.pager > li:focus {
background: $theme-pagination-background-active;
box-shadow: $theme-pagination-shadow-active;
color: $theme-pagination-color-active;
}
.pager > .selected {
background: $theme-pagination-background-selected;
box-shadow: $theme-pagination-shadow-selected;
color: $theme-pagination-color-selected;
}
.pager > li > a {
display: block;
margin: 0;
padding: 0;
text-align: center;
line-height: 2.5rem;
width: 5rem;
height: 2.5rem;
}