misuzu/assets/less/classes/pagination.less

59 lines
1.1 KiB
Text
Raw Normal View History

2018-05-20 22:12:45 +02:00
.pagination {
2018-04-16 02:33:54 +02:00
list-style: none;
display: flex;
padding: 1px;
2018-09-10 00:44:10 +02:00
border: 1px solid var(--accent-colour);
2018-04-16 02:33:54 +02:00
&__wrapper {
2018-09-10 00:44:10 +02:00
background-color: var(--background-colour);
margin: 2px 0;
2018-09-10 00:44:10 +02:00
box-shadow: 0 1px 2px var(--accent-colour);
}
&__separator {
flex-grow: 1;
flex-shrink: 1;
}
2018-04-16 02:33:54 +02:00
&__option {
2018-09-10 00:44:10 +02:00
background: var(--accent-colour);
color: var(--text-colour-header);
2018-04-16 02:33:54 +02:00
height: 20px;
2018-05-22 01:05:25 +02:00
min-width: 20px;
2018-04-16 02:33:54 +02:00
2018-05-20 22:12:45 +02:00
&:not(:last-child) {
margin-right: 1px;
}
2018-05-16 22:48:33 +02:00
&--disabled {
color: #383838;
background: #777;
}
@media (max-width: @site-mobile-width) {
2018-04-16 02:33:54 +02:00
height: 30px;
min-width: 30px;
2018-04-16 02:33:54 +02:00
font-size: 1.5em;
line-height: 1.5em;
}
}
&__link {
display: block;
width: 100%;
height: 100%;
text-align: center;
text-decoration: none;
2018-05-16 22:48:33 +02:00
color: inherit;
2018-04-16 02:33:54 +02:00
&--prev,
&--next,
2018-05-16 22:48:33 +02:00
&--first,
&--last,
2018-04-16 02:33:54 +02:00
&--active,
&:hover {
font-weight: bold;
}
}
}