100 lines
1.4 KiB
CSS
100 lines
1.4 KiB
CSS
.posts {
|
|
width: 100%;
|
|
}
|
|
|
|
.post {
|
|
width: 100%;
|
|
text-align: left;
|
|
margin: 20px auto;
|
|
padding: 20px 0;
|
|
|
|
@media (--tablet) {
|
|
max-width: 660px;
|
|
}
|
|
|
|
&:not(:last-of-type) {
|
|
border-bottom: 1px solid var(--border-color);
|
|
}
|
|
|
|
&-meta {
|
|
font-size: 1rem;
|
|
margin-bottom: 10px;
|
|
color: color-mod(var(--accent) a(70%));
|
|
}
|
|
|
|
&-title {
|
|
--border: 3px dotted var(--accent);
|
|
position: relative;
|
|
color: var(--accent);
|
|
margin: 0 0 15px;
|
|
padding-bottom: 15px;
|
|
border-bottom: var(--border);
|
|
|
|
&:after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 2px;
|
|
display: block;
|
|
width: 100%;
|
|
border-bottom: var(--border);
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
&-tags {
|
|
display: block;
|
|
margin-bottom: 20px;
|
|
font-size: 1rem;
|
|
opacity: .5;
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
&-content {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
&-cover {
|
|
border: 20px solid var(--accent);
|
|
background: transparent;
|
|
margin: 40px 0;
|
|
padding: 20px;
|
|
|
|
@media (--phone) {
|
|
padding: 10px;
|
|
border-width: 10px;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
|
|
li:before {
|
|
content: '►';
|
|
position: absolute;
|
|
left: -20px;
|
|
color: var(--accent);
|
|
}
|
|
}
|
|
}
|
|
|
|
.post--regulation {
|
|
h1 {
|
|
justify-content: center;
|
|
}
|
|
|
|
h2 {
|
|
justify-content: center;
|
|
margin-bottom: 10px;
|
|
|
|
& + h2 {
|
|
margin-top: -10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
}
|
|
}
|