Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/athul/archie.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAthul Cyriac Ajay <athul8720@gmail.com>2021-03-24 17:08:32 +0300
committerGitHub <noreply@github.com>2021-03-24 17:08:32 +0300
commit11d230652b2f918cd77e2c1f3b53736aa370d65e (patch)
tree8f9fdc6a76c988bdebb1b347f3dfdfbc31146ed6
parentca5424f0632b42edf30865ad6387ababf869c785 (diff)
parent7a96256b05d5553b2c9361b7df8cf4f53ed923b2 (diff)
Merge pull request #21 from skyzh/patch-1
fix unwanted star before nested ordered list
-rw-r--r--static/css/main.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/static/css/main.css b/static/css/main.css
index 97bbe5d..8f57c21 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -60,7 +60,7 @@ ul {
ul li {
text-indent: -2ch;
}
-ul li::before {
+ul > li::before {
content: '* ';
font-weight: bold;
}