pages-themes / architect

Architect is a Jekyll theme for GitHub Pages
https://pages-themes.github.io/architect/
Creative Commons Zero v1.0 Universal
313 stars 799 forks source link

Different indentation for ordered and unordered lists #21

Closed pwsiegel closed 6 years ago

pwsiegel commented 6 years ago

Hello, First of all: I love the theme, and I appreciate all of the hard work that went into it!

My only qualm is with the way ordered lists are displayed - they sort of hang off the left edge of the paragraph, whereas unordered lists are slightly inset as I would expect. You can see an example of both in this post: https://pwsiegel.github.io/ds/info-theory-basics/.

It is possible that this behavior is intended, in which case feel free to close this issue. But if someone could point me to the CSS that controls the unordered lists so that I could replicate them in my own config, I would greatly appreciate it!

(I found ol and ol li in the CSS folder, but these settings don't appear to account for the difference.)

askadu commented 6 years ago

Yes i can see the left padding is different for ol and ul ul { list-style-position: inside; list-style: disc; padding-left: 20px; }

ol { list-style-position: inside; list-style: decimal; padding-left: 3px; }

Before screen shot (Desktop) jekyll_before

After fix screen shot (Desktop) jekyll_after

we can see after fixing the ordered list is properly aligned.