47 lines
849 B
Text
47 lines
849 B
Text
|
.settings__pagination {
|
||
|
list-style: none;
|
||
|
display: flex;
|
||
|
max-width: 400px;
|
||
|
margin: 2px auto;
|
||
|
padding: 1px;
|
||
|
border: 1px solid #9475b2;
|
||
|
|
||
|
&__separator {
|
||
|
flex-grow: 1;
|
||
|
flex-shrink: 1;
|
||
|
}
|
||
|
|
||
|
&__option {
|
||
|
background: #9475b2;
|
||
|
height: 20px;
|
||
|
width: 20px;
|
||
|
|
||
|
&:not(:last-child){
|
||
|
margin-right: 1px;
|
||
|
}
|
||
|
|
||
|
@media (max-width: @mio-news-mobile) {
|
||
|
height: 30px;
|
||
|
width: 30px;
|
||
|
font-size: 1.5em;
|
||
|
line-height: 1.5em;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&__link {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
text-align: center;
|
||
|
text-decoration: none;
|
||
|
color: #306;
|
||
|
|
||
|
&--prev,
|
||
|
&--next,
|
||
|
&--active,
|
||
|
&:hover {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
}
|
||
|
}
|