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

github.com/jbub/ghostwriter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Jonsson <dannie92@gmail.com>2017-01-04 22:51:43 +0300
committerJuraj Bubniak <juraj.bubniak@gmail.com>2017-01-04 22:51:43 +0300
commit2cd480e1cde513be0a9d3f9145e4c50aaec9f8d4 (patch)
tree0c257f5b2f92ef359e01940b3ae3f00b03a57eb7
parent952d9ae599f1faf59858da274c4c47da02b6eb6c (diff)
Indent lists in posts
-rw-r--r--static/css/style.css9
-rw-r--r--static/sass/style.scss3
2 files changed, 7 insertions, 5 deletions
diff --git a/static/css/style.css b/static/css/style.css
index b5e47bb..7bf2c4d 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -47,8 +47,7 @@ a {
ul, ol {
list-style-position: inside;
line-height: 1.4;
- margin: 0 0 20px;
- padding: 0; }
+ margin: 0 0 20px; }
ul ul, ul ol, ol ul, ol ol {
margin: 10px 0 0 20px; }
ul li, ol li {
@@ -212,7 +211,8 @@ table {
.site-nav {
list-style: none;
- margin: 28px 0 10px; }
+ margin: 28px 0 10px;
+ padding: 0; }
.site-nav-item {
display: inline-block;
@@ -332,7 +332,8 @@ table {
/* Post Index */
/* ============================================================ */
.post-list {
- list-style: none; }
+ list-style: none;
+ padding: 0; }
.post-stub {
border-bottom: 1px dotted #303030;
diff --git a/static/sass/style.scss b/static/sass/style.scss
index 1eb1bf5..a4df87d 100644
--- a/static/sass/style.scss
+++ b/static/sass/style.scss
@@ -45,7 +45,6 @@ ul, ol {
list-style-position: inside;
line-height: 1.4;
margin: 0 0 20px;
- padding: 0;
ul, ol { margin: 10px 0 0 20px; }
@@ -245,6 +244,7 @@ table {
.site-nav {
list-style: none;
margin: 28px 0 10px;
+ padding: 0;
}
.site-nav-item {
@@ -374,6 +374,7 @@ table {
.post-list {
list-style: none;
+ padding: 0;
}
.post-stub {