zola/sass/assets/tale/_post.scss
2022-10-31 11:39:53 +01:00

86 lines
1.3 KiB
SCSS

.post {
padding: 3rem 0;
&-info {
width: 100%;
height: 100%;
color: $default-tint;
font-family: $serif-secondary;
margin-bottom: 1rem;
display: inline-block;
.date {
float: left;
}
.tags {
float: right;
text-align: right;
font-size: 1.04rem;
max-width: 60%;
}
}
&-title {
color: $default-shade;
font-family: $sans-serif;
font-size: 3rem;
margin: 1rem 0;
line-height: 0.9;
text-align: center;
a {
color: $default-shade;
}
}
&-line {
border-top: 0.4rem solid $highlight;
display: block;
margin: 0 auto 2rem;
width: 6rem;
}
p {
margin: 0 0 1rem;
}
a:hover {
text-decoration: underline;
}
img {
margin: 0 auto 0.5rem;
}
img + em {
color: $default-tint;
display: block;
font-family: $sans-serif;
font-size: 0.9rem;
font-style: normal;
text-align: center;
}
article {
h1 {
position: relative;
z-index : 1;
padding-bottom: 5px;
font-size: 1.8rem;
}
h1:before {
content: "";
position: absolute;
left: 0;
bottom: 0;
height: .2rem;
width: 3rem;
border-bottom: .2rem solid $default-shade;
}
}
}