Remove comments CSS from blog and into comments module

Move CSS to scss
This commit is contained in:
Damian Mooyman 2015-04-17 16:52:28 +12:00
parent 22f8901b63
commit b173460400
3 changed files with 29 additions and 44 deletions

View File

@ -4,7 +4,6 @@
http_path = "/"
css_dir = "css"
sass_dir = "scss"
images_dir = "images"
javascripts_dir = "javascript"
# You can select your preferred output style here (can be overridden via the command line):
@ -14,7 +13,7 @@ javascripts_dir = "javascript"
relative_assets = true
# To disable debugging comments that display the original location of your selectors. Uncomment:
line_comments = true
line_comments = false
# If you prefer the indented syntax, you might want to regenerate this

55
css/blog.css Executable file → Normal file
View File

@ -1,43 +1,14 @@
.no-sidebar .content-container.size3of4 {
width: 75%;
}
.blog-entry .post-image img {
width: 98.75%;
}
.blog-sidebar .WidgetHolder ul {
margin-left: 0;
}
.blog-sidebar .WidgetHolder ul li {
list-style-type: none;
}
#Form_CommentsForm + h4 {
clear: both;
padding-top: 35px;
display: block;
}
.typography ul.comments-list {
margin: 0;
}
.typography ul.comments-list > li {
list-style: none;
border-bottom: 1px solid #e5e5e5;
padding: 10px 0;
}
.typography ul.comments-list > li .action-links {
margin: 0;
}
.typography ul.comments-list > li .action-links li {
list-style: none;
margin-right: 10px;
}
.commenting-rss-feed {
clear: both;
.no-sidebar .content-container.size3of4 {
width: 75%;
}
.blog-entry .post-image img {
width: 98.75%;
}
.blog-sidebar .WidgetHolder ul {
margin-left: 0;
}
.blog-sidebar .WidgetHolder ul li {
list-style-type: none;
}

15
scss/blog.scss Normal file
View File

@ -0,0 +1,15 @@
.no-sidebar .content-container.size3of4 {
width: 75%;
}
.blog-entry .post-image img {
width: 98.75%;
}
.blog-sidebar .WidgetHolder ul {
margin-left: 0;
li {
list-style-type: none;
}
}