mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-09-10 10:16:21 +02:00
52 lines
852 B
SCSS
52 lines
852 B
SCSS
@use "sass:color";
|
|
|
|
@use "../../assets/scss/variables" as *;
|
|
@use "../../assets/scss/mixins" as *;
|
|
|
|
.pagination {
|
|
display: flex;
|
|
@include margin-top(2);
|
|
|
|
.previous {
|
|
text-align: left;
|
|
width: 50%;
|
|
|
|
.previousLink {
|
|
color: $color-secondary;
|
|
font-size: 26px;
|
|
font-weight: bold;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: $color-primary;
|
|
}
|
|
|
|
&.disable {
|
|
color: color.adjust($color-gray, $whiteness: 20%);
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.next {
|
|
text-align: right;
|
|
width: 50%;
|
|
|
|
.nextLink {
|
|
color: $color-secondary;
|
|
font-size: 26px;
|
|
font-weight: bold;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: $color-primary;
|
|
}
|
|
|
|
&.disable {
|
|
color: color.adjust($color-gray, $whiteness: 20%);
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
}
|
|
}
|