1
0
Fork 0
mirror of https://github.com/Findus23/se-simulator.git synced 2024-09-20 17:03:45 +02:00
se-simulator/web/static/sass/_pagination.scss
2018-03-24 17:33:10 +01:00

48 lines
673 B
SCSS

.pagination {
&.top {
}
&.bottom {
}
a {
.mobile {
display: none;
}
font-size: 18px;
display: inline-block;
padding: 8px 20px;
margin-left: -5px;
svg {
height: 18px;
vertical-align: middle;
}
@media (min-width: 500px) {
&:hover:not(.disabled), &.active {
color: $primary-dark;
border-bottom: 3px solid;
}
}
&.disabled {
color: $lightTextGray;
svg {
fill: $lightTextGray;
}
}
@media (max-width: $mobile-width) {
&.active::before {
content: "Seite ";
}
&.other {
display: none;
}
}
}
}