hugo-theme-terminal/assets/css/post.scss

129 lines
1.8 KiB
SCSS
Raw Normal View History

2022-06-21 13:50:51 +00:00
.index-content {
margin-top: 20px;
}
.framed {
2022-06-21 15:14:59 +00:00
border: 1px solid $accent;
2022-06-21 13:50:51 +00:00
padding: 20px;
*:first-child {
margin-top: 0;
}
*:last-child {
margin-bottom: 0;
}
}
.posts {
width: 100%;
}
.post {
width: 100%;
text-align: left;
margin: 20px auto;
padding: 20px 0;
&:not(:last-of-type) {
2022-06-21 15:14:59 +00:00
border-bottom: 1px solid $border-color;
2022-06-21 13:50:51 +00:00
}
&-meta {
font-size: 1rem;
margin-bottom: 10px;
2022-06-21 15:14:59 +00:00
color: opcift($accent, 70%);
2022-06-21 13:50:51 +00:00
}
&-title {
2022-06-21 15:14:59 +00:00
$border: 3px dotted $accent;
2022-06-21 13:50:51 +00:00
position: relative;
2022-06-21 15:14:59 +00:00
color: $accent;
2022-06-21 13:50:51 +00:00
margin: 0 0 15px;
padding-bottom: 15px;
2022-06-21 15:14:59 +00:00
border-bottom: $border;
2022-06-21 13:50:51 +00:00
&:after {
content: '';
position: absolute;
bottom: 2px;
display: block;
width: 100%;
2022-06-21 15:14:59 +00:00
border-bottom: $border;
2022-06-21 13:50:51 +00:00
}
a {
text-decoration: none;
}
}
&-tags {
display: block;
margin-bottom: 20px;
font-size: 1rem;
opacity: .5;
a {
text-decoration: none;
}
}
&-content {
margin-top: 30px;
}
&-cover {
2022-06-21 15:14:59 +00:00
border: 20px solid $accent;
2022-06-21 13:50:51 +00:00
background: transparent;
margin: 40px 0;
padding: 20px;
2022-06-21 15:14:59 +00:00
@media ($phone) {
2022-06-21 13:50:51 +00:00
padding: 10px;
border-width: 10px;
}
}
ul {
list-style: none;
li:not(:empty):before {
content: '-';
position: absolute;
left: -20px;
2022-06-21 15:14:59 +00:00
color: $accent;
2022-06-21 13:50:51 +00:00
}
}
}
.post--regulation {
h1 {
justify-content: center;
}
h2 {
justify-content: center;
margin-bottom: 10px;
& + h2 {
margin-top: -10px;
margin-bottom: 20px;
}
}
}
.hanchor {
2022-06-21 15:14:59 +00:00
color: opacify($accent, .9);
2022-06-21 13:50:51 +00:00
text-decoration: none;
margin-left: 10px;
visibility: hidden;
}
h1:hover a, h2:hover a, h3:hover a, h4:hover a {
visibility: visible;
}
.footnotes {
2022-06-21 15:14:59 +00:00
color: opacify($color, .5);
2022-06-21 13:50:51 +00:00
}