created blog.scss, added link to blogs/{user}

Later we will list all posts of a user under the route blogs/{user}
This commit is contained in:
Dario Bösch
2015-05-22 14:04:00 +02:00
parent 261aeca300
commit db77c4024d
7 changed files with 87 additions and 50 deletions

View File

@@ -3,49 +3,15 @@ ul.cms-nodes {
padding: 3px 3px 3px 3px;
border: solid 1px #ccc;
}
.cms-nodes li.cms_type_page, .cms-nodes li.cms_type_blog {
ul.cms-nodes li {
border-top: dotted 1px #ccc;
}
li.cms_type_page a::before {
content: "[page] ";
}
.cms-nodes li.cms_type_blog a::before {
content: "[blog] ";
}
ul.cms-nodes li:first-child {
border-top: none;
}
.summary{
margin-top:20px;
font-weight:bold;
ul.cms-nodes li.cms_type_page a::before {
content: "[page] ";
}
.cms-blog-nodes{
padding:0;
margin:0;
ul.cms-nodes li.cms_type_blog a::before {
content: "[blog] ";
}
.cms-blog-nodes li{
list-style: none;
display: block;
margin-top:20px;
padding-bottom:20px;
border-bottom:1px dotted black;
}
.cms-blog-nodes li > a{
color:black;
font-size:18px;
text-decoration: none;
display:block;
margin:6px 0;
}
.cms-blog-nodes li > a:hover{
color:#999;
}
.blog_list_summary a{
margin-top:20px;
display:block;
}