diff options
| author | EricFromCanada | 2017-03-12 21:01:00 -0400 |
|---|---|---|
| committer | EricFromCanada | 2017-03-12 21:01:00 -0400 |
| commit | c0468a3266ca173cb1e04a764bcc205a88957bba (patch) | |
| tree | 7be9f053892fcb731a8856c05e0447fedcf8ddac /docs/css | |
| parent | ad7c2e5416b032a49f8c889f9f7634ac8c3ffedc (diff) | |
| download | brew-c0468a3266ca173cb1e04a764bcc205a88957bba.tar.bz2 | |
docs: add markers to ordered lists and sublists
While GitHub allows a single space to denote a sublist, Jekyll is not
so lenient. It also seems unable to handle ordered sublists.
Diffstat (limited to 'docs/css')
| -rw-r--r-- | docs/css/screen.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/css/screen.css b/docs/css/screen.css index 76d1461c9..2f1e84ce1 100644 --- a/docs/css/screen.css +++ b/docs/css/screen.css @@ -158,8 +158,12 @@ pre code { box-shadow: 0 -1px 0 rgba(0,0,0,0.5); } +#home ol, #page ol, .postcontent ol { + list-style: decimal; +} + #home ul, #page ul, .postcontent ul { - list-style: inherit; + list-style: disc; } #home h1, #page h1 { |
