diff options
| author | Sadeep Madurange <sadeep@asciimx.com> | 2025-12-08 17:34:35 +0800 |
|---|---|---|
| committer | Sadeep Madurange <sadeep@asciimx.com> | 2025-12-08 21:05:19 +0800 |
| commit | 752a06ec0ebf20d6232b13f1ea53fe21fefcefbd (patch) | |
| tree | 690411afad8eb76216417a42de94135214cb2401 /assets/css | |
| parent | 20b0a045a7dc78f9728837fe5a1be8cf12caae4e (diff) | |
| download | www-752a06ec0ebf20d6232b13f1ea53fe21fefcefbd.tar.gz | |
Fix list indentation.
Diffstat (limited to 'assets/css')
| -rw-r--r-- | assets/css/main.css | 11 | ||||
| -rw-r--r-- | assets/css/skeleton.css | 7 |
2 files changed, 11 insertions, 7 deletions
diff --git a/assets/css/main.css b/assets/css/main.css index ef53733..5a777c0 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -72,10 +72,16 @@ td { width: 50%; } +#navlist +{ + list-style-type: none; + margin-left: 0 !important; +} + #navlist li { display: inline; - list-style-type: none; + list-style-type: none inside; padding-right: 20px; } @@ -94,9 +100,6 @@ td { } @media (min-width: 550px) { - #nav-container { - padding: 0; - } .post-container { padding: 0; } diff --git a/assets/css/skeleton.css b/assets/css/skeleton.css index 40c9bdc..90239a6 100644 --- a/assets/css/skeleton.css +++ b/assets/css/skeleton.css @@ -275,12 +275,13 @@ label > .label-body { /* Lists –––––––––––––––––––––––––––––––––––––––––––––––––– */ ul { - list-style: circle inside; } + list-style: circle outside; } ol { - list-style: decimal inside; } + list-style: decimal outside; } ol, ul { padding-left: 0; - margin-top: 0; } + margin-top: 0; + margin-left: 1em; } ul ul, ul ol, ol ol, |
