misuzu/assets/less/mio/classes/pagination.less

53 lines
954 B
Text
Raw Normal View History

2018-05-20 20:12:45 +00:00
.pagination {
2018-04-16 00:33:54 +00:00
list-style: none;
display: flex;
padding: 1px;
2018-05-20 20:12:45 +00:00
border: 1px solid #9475b2;
2018-04-16 00:33:54 +00:00
&__separator {
flex-grow: 1;
flex-shrink: 1;
}
2018-04-16 00:33:54 +00:00
&__option {
background: #9475b2;
2018-05-16 20:48:33 +00:00
color: #306;
2018-04-16 00:33:54 +00:00
height: 20px;
2018-05-21 23:05:25 +00:00
min-width: 20px;
2018-04-16 00:33:54 +00:00
2018-05-20 20:12:45 +00:00
&:not(:last-child) {
margin-right: 1px;
}
2018-05-16 20:48:33 +00:00
&--disabled {
color: #383838;
background: #777;
}
2018-04-16 00:33:54 +00:00
@media (max-width: @mio-news-mobile) {
height: 30px;
min-width: 30px;
2018-04-16 00:33:54 +00: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 20:48:33 +00:00
color: inherit;
2018-04-16 00:33:54 +00:00
&--prev,
&--next,
2018-05-16 20:48:33 +00:00
&--first,
&--last,
2018-04-16 00:33:54 +00:00
&--active,
&:hover {
font-weight: bold;
}
}
}