1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-03 14:06:40 -04:00

fix list styles, no clue when/how they got messed up

This commit is contained in:
2021-05-27 11:33:15 -04:00
parent 80ea194c74
commit b02efa77b4
2 changed files with 10 additions and 2 deletions

View File

@ -49,8 +49,9 @@ div#content {
}
}
ul {
margin-left: 1em;
ul,
ol {
margin-left: 1.5em;
padding-left: 0;
li {

View File

@ -65,6 +65,13 @@
div#content p {
margin: 0.75em 0;
}
div#content ol, div#content ul {
margin-left:1.5em;
padding-left:0;
}
div#content ol li, div#content ul li {
padding-left:.25em;
}
div#content a:hover {
text-decoration: underline;
}