LoveIt/assets/css/_partial/_single/_footer.scss

91 lines
1.5 KiB
SCSS
Raw Normal View History

2020-01-31 15:53:04 +01:00
.post-footer {
margin-top: 3rem;
.post-info {
border-bottom: 1px solid $global-border-color;
padding: 1rem 0 0.3rem;
.dark & {
2020-01-31 15:53:04 +01:00
border-bottom: 1px solid $global-border-color-dark;
}
.post-info-line {
display: flex;
justify-content: space-between;
.post-info-mod {
font-size: 0.8em;
color: $global-font-secondary-color;
.dark & {
2020-01-31 15:53:04 +01:00
color: $global-font-secondary-color-dark;
}
2020-03-03 18:27:30 +01:00
@include link(false, false);
2020-01-31 15:53:04 +01:00
}
.post-info-license {
font-size: 0.8em;
color: $global-font-secondary-color;
.dark & {
2020-01-31 15:53:04 +01:00
color: $global-font-secondary-color-dark;
}
}
.post-info-md {
2020-03-03 18:27:30 +01:00
font-size: 0.8rem;
width: 8rem;
2020-01-31 15:53:04 +01:00
@include link(false, false);
2020-01-31 15:53:04 +01:00
}
}
}
.post-info-more {
padding: 0.3rem 0 1rem;
display: flex;
justify-content: space-between;
font-size: 0.9rem;
}
.post-tags {
max-width: 65%;
* {
display: inline;
}
}
2020-01-31 15:53:04 +01:00
.post-nav {
&::before,
&::after {
content: ' ';
display: table;
}
& a.prev,
& a.next {
font-size: 1rem;
font-weight: 600;
@include transition(all 0.3s ease-out);
2020-01-31 15:53:04 +01:00
}
& a.prev {
float: left;
}
& a.prev:hover {
@include transform(translateX(-4px));
2020-01-31 15:53:04 +01:00
}
& a.next {
float: right;
}
& a.next:hover {
@include transform(translateX(4px));
2020-01-31 15:53:04 +01:00
}
}
}