Add last commit to posts when they changed, dim aside on posts' pages

This commit is contained in:
arne 2022-03-03 11:32:48 +01:00
commit 78ac690a7c
7 changed files with 54 additions and 26 deletions

View file

@ -36,6 +36,7 @@ h1, h2, h3, h4, h5, h6 {
}
h1 {
color: #222;
font-size: 24px;
line-height: 24px;
padding: 0 0 32px;
@ -153,11 +154,6 @@ aside {
margin: 0;
}
}
a {
display: inline-block;
margin-left: .3em;
}
}
article {
@ -175,18 +171,8 @@ article {
footer {
grid-area: footer;
color: #aaa;
padding-top: 48px;
border-top: 1px dotted #aaa;
a {
color: #888;
border-bottom: 1px dotted #888;
&:hover {
background: #88888822;
}
}
}
// special page styling
@ -202,11 +188,6 @@ footer {
padding-bottom: 16px;
}
a {
// let post titles break
display: inline;
}
ul {
list-style: inside;
padding: 0 0 0 16px;
@ -220,3 +201,17 @@ footer {
article { display: none; }
}
footer,
.posts aside {
color: #aaa;
a {
color: #888;
border-bottom: 1px dotted #888;
&:hover {
background: #88888822;
}
}
}