35 lines
459 B
SCSS
35 lines
459 B
SCSS
.preview {
|
|
margin-bottom: 3rem;
|
|
position: relative;
|
|
}
|
|
|
|
.pagination {
|
|
font-family: $serif-font;
|
|
position: relative;
|
|
text-align: center;
|
|
|
|
span {
|
|
color: $default-shade;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
a {
|
|
@include transition(all .3s ease-out);
|
|
color: $default-color;
|
|
font-size: 1.3rem;
|
|
position: absolute;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: $default-tint;
|
|
}
|
|
}
|
|
|
|
.left {
|
|
left: 0;
|
|
}
|
|
|
|
.right {
|
|
right: 0;
|
|
}
|
|
}
|