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

102 lines
1.9 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-theme & {
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-theme & {
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-theme & {
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;
-webkit-transition: all ease-out .3s;
-moz-transition: all ease-out .3s;
-o-transition: all ease-out .3s;
transition: all ease-out .3s;
2020-01-31 15:53:04 +01:00
}
& a.prev {
float: left;
}
& a.prev:hover {
-webkit-transform: translateX(-4px);
-moz-transform: translateX(-4px);
-ms-transform: translateX(-4px);
-o-transform: translateX(-4px);
2020-01-31 15:53:04 +01:00
transform: translateX(-4px);
}
& a.next {
float: right;
}
& a.next:hover {
-webkit-transform: translateX(4px);
-moz-transform: translateX(4px);
-ms-transform: translateX(4px);
-o-transform: translateX(4px);
2020-01-31 15:53:04 +01:00
transform: translateX(4px);
}
}
}