You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
575 B
33 lines
575 B
.paginator {
|
|
display: flex;
|
|
margin-left: 100px;
|
|
margin-top: 75px;
|
|
padding-bottom: 1em;
|
|
|
|
.fa {
|
|
margin: 0 0.25em;
|
|
}
|
|
|
|
a {
|
|
border-radius: 4px;
|
|
padding: 1em 2em;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
background-color: #B4B4B4;
|
|
color: #fff;
|
|
|
|
&:hover {
|
|
background-color: $highlight-color;
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
&.older {
|
|
margin-right: auto;
|
|
}
|
|
|
|
&.newer {
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
}
|