diff options
author | Nikolay Sturm <sturm@erisiandiscord.de> | 2011-12-02 16:04:36 +0100 |
---|---|---|
committer | Nikolay Sturm <sturm@erisiandiscord.de> | 2011-12-02 16:04:36 +0100 |
commit | 6bf5258f1fb8848948633a56c9dff14f6acc42ad (patch) | |
tree | 970be94b1edbf74aa31158c34fb44aea0e408329 /.themes/classic | |
parent | 76af6980d4e4f4ec4d5f910c2f5b79b12087e4d5 (diff) | |
download | my_new_personal_website-6bf5258f1fb8848948633a56c9dff14f6acc42ad.tar.xz my_new_personal_website-6bf5258f1fb8848948633a56c9dff14f6acc42ad.zip |
nested lists should not have a margin-bottom
Diffstat (limited to '.themes/classic')
-rw-r--r-- | .themes/classic/sass/base/_typography.scss | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.themes/classic/sass/base/_typography.scss b/.themes/classic/sass/base/_typography.scss index 8ef39587..d6cf852b 100644 --- a/.themes/classic/sass/base/_typography.scss +++ b/.themes/classic/sass/base/_typography.scss @@ -61,12 +61,12 @@ h6, section h5, section section h4, section section section h3 { p, blockquote, ul, ol { margin-bottom: 1.5em; } ul { list-style-type: disc; - ul { list-style-type: circle; - ul { list-style-type: square; }}} + ul { list-style-type: circle; margin-bottom: 0px; + ul { list-style-type: square; margin-bottom: 0px; }}} ol { list-style-type: decimal; - ol { list-style-type: lower-alpha; - ol { list-style-type: lower-roman; }}} + ol { list-style-type: lower-alpha; margin-bottom: 0px; + ol { list-style-type: lower-roman; margin-bottom: 0px; }}} ul, ol { &, ul, ol { margin-left: 1.3em; }} |