Add some colours and stuff

This commit is contained in:
William 2023-01-08 16:29:13 +00:00
parent 4ed7a69bc0
commit 8609587bed
1 changed files with 11 additions and 2 deletions

View File

@ -16,12 +16,15 @@ a {
color: #00f; color: #00f;
} }
h1, h2 { h1, h2, h3 {
font-weight: normal; font-weight: normal;
border-bottom: 1px solid #e9ecef;
padding-bottom: .25rem;
} }
header { header {
background: #eee; background: #ddf;
border-bottom: 1px solid #aaa;
} }
header > nav { header > nav {
padding: 0.75rem; padding: 0.75rem;
@ -42,13 +45,18 @@ img {
} }
table { table {
display: block;
border-collapse: collapse; border-collapse: collapse;
width: 100%; width: 100%;
overflow: auto;
} }
td, th { td, th {
text-align: left; text-align: left;
padding: .5rem; padding: .5rem;
} }
tr {
border-bottom: 1px solid #aaa;
}
tr:nth-child(even) { tr:nth-child(even) {
background: #eee; background: #eee;
} }
@ -56,6 +64,7 @@ tr:nth-child(even) {
pre, code { pre, code {
font-family: "DejaVu Sans Mono", Consolas, monospace; font-family: "DejaVu Sans Mono", Consolas, monospace;
background: #eee; background: #eee;
border: 1px solid #aaa;
padding: .5rem; padding: .5rem;
max-width: 100%; max-width: 100%;
display: block; display: block;