tale/_sass/_home.scss

54 lines
738 B
SCSS
Raw Normal View History

2017-03-12 10:44:45 +00:00
.preview {
&:not(:last-child) {
border-bottom: .5px solid $grey-2;
2017-03-14 03:55:34 +00:00
}
}
2017-03-12 03:11:17 +00:00
.pagination {
font-family: $serif-font;
position: relative;
text-align: center;
span {
color: $default-shade;
2017-03-12 10:44:45 +00:00
font-size: 1.1rem;
2017-03-12 03:11:17 +00:00
}
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 {
2017-03-12 03:11:17 +00:00
color: $default-color;
2017-03-12 10:44:45 +00:00
font-size: 1.3rem;
2017-03-12 03:11:17 +00:00
position: absolute;
2017-03-12 10:44:45 +00:00
&:hover,
&:focus {
2017-03-12 03:11:17 +00:00
color: $default-tint;
text-decoration: none;
2017-03-12 03:11:17 +00:00
}
}
.left {
left: 0;
}
.right {
right: 0;
}
}