Rewrote lists to use tables instead of flexbox

This commit is contained in:
Nox Sluijtman 2022-09-26 19:23:45 +02:00
parent 321d3a19f9
commit 0934cae834
3 changed files with 34 additions and 74 deletions

View file

@ -76,10 +76,10 @@ header{text-transform: capitalize; text-align:center;border-bottom:2pt solid; fo
-moz-animation: gay 8s ease-in-out infinite;
-webkit-animation: gay 8s ease-in-out infinite;
}
.post-meta{margin-bottom: .5em; border-bottom: solid 1pt;}
.on-list{color: var(--ansi07);}
.post-meta{color: var(--ansi07); display:flex; justify-content: space-between; }
.post-tags a{text-decoration:none; color:inherit;}
table{color: var(--ansi07); margin-bottom: .5em; }
.post-meta{ width: 100%; background-color: var(--ansi00); border-radius: 1em; padding:.5em;}
.post-meta a{text-decoration: none;}
.post-tags a{ color:inherit;}
.post-tags a:hover{text-decoration:none; color:var(--ansi15); background:inherit;}
.button{padding:.3em;border-radius:.3em;}
.pagination__buttons{display:flex; justify-content:center;}