53 lines
738 B
SCSS
53 lines
738 B
SCSS
.preview {
|
|
&:not(:last-child) {
|
|
border-bottom: .5px solid $grey-2;
|
|
}
|
|
}
|
|
|
|
.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);
|
|
}
|
|
|
|
.home {
|
|
color: $default-color;
|
|
font-family: $sans-font;
|
|
font-size: 1.1rem;
|
|
font-weight: 700;
|
|
|
|
&:hover,
|
|
&:focus, {
|
|
color: $default-tint;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.arrow {
|
|
color: $default-color;
|
|
font-size: 1.3rem;
|
|
position: absolute;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: $default-tint;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.left {
|
|
left: 0;
|
|
}
|
|
|
|
.right {
|
|
right: 0;
|
|
}
|
|
}
|