Add sidebar

This commit is contained in:
2021-12-04 22:30:48 +00:00
parent cb1297b8bf
commit e30fab6a06
3 changed files with 65 additions and 5 deletions

View File

@ -31,4 +31,32 @@
display: block;
text-align: center;
font-size: 70.7%;
}
body {
display: grid;
grid-template-columns: 300px auto;
}
#sidebar {
margin: 1em;
font-size: 180%;
}
#sidebar ul {
padding: 0;
list-style: none;
font-size: 75%;
}
.two-valued {
display: table;
}
.two-valued * {
display: table-row;
}
.two-valued * * {
display: table-cell;
}
.right {
text-align: right;
}