tale/_sass/_home.scss

55 lines
767 B
SCSS
Raw Normal View History

2017-03-12 10:44:45 +00:00
.preview {
margin-bottom: 3rem;
2017-03-11 05:09:18 +00:00
position: relative;
}
2017-03-12 03:11:17 +00:00
2017-03-14 03:55:34 +00:00
.post-link {
text-align: right;
a {
@include transition (all .3s ease-out);
color: $default-tint;
display: inline-block;
font-family: $sans-font;
font-size: 1.3rem;
font-weight: 500;
letter-spacing: .3px;
&:hover,
&:focus {
color: $default-color;
}
}
}
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);
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;
}
}
.left {
left: 0;
}
.right {
right: 0;
}
}