This commit is contained in:
Dominic Grimm 2023-02-12 09:18:56 +01:00
parent 501b9d3093
commit 964534d0d9
No known key found for this signature in database
GPG key ID: 6F294212DEAAC530
21 changed files with 762 additions and 207 deletions

View file

@ -45,7 +45,7 @@ hr {
ul.dashed {
list-style-type: none;
li:before {
& > li:before {
content: "-";
position: absolute;
// margin-left: -20px;
@ -107,7 +107,7 @@ table.border-rows {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
// overflow: hidden;
float: right;
li {
@ -138,9 +138,37 @@ table.border-rows {
font-size: small;
}
#post-index {
li:not(:last-child) {
margin-bottom: 1rem;
ul.post-index > li:not(:last-child) {
margin-bottom: 1rem;
}
ul.tag-list {
list-style-type: none;
margin: 0;
padding: 0;
& > li {
float: left;
&:not(:first-of-type) {
padding-left: 0.5rem;
}
&:not(:last-of-type)::after {
content: ",";
}
}
}
#blog-meta {
th,
td {
text-align: left;
vertical-align: top;
}
th {
padding-right: 1em;
}
}
@ -204,6 +232,11 @@ table.border-rows {
border: thin solid black;
overflow-x: scroll;
}
blockquote {
padding: 0 1rem;
border-left: medium solid black;
}
}
@media only screen and (max-width: 600px) {