noscript for home and category view (although it's not quite working for

category view yet)
This commit is contained in:
Julian Lam
2013-06-14 13:01:24 -04:00
parent df5518f218
commit 05b91caf6c
9 changed files with 107 additions and 25 deletions

View File

@@ -1,15 +1,50 @@
@import "mixins";
noscript {
.posts {
li {
list-style-type: none;
padding: 1em;
margin-bottom: 1em;
.default {
list-style-type: none;
padding: 1em;
margin-bottom: 1em;
&:nth-child(even) {
background: rgba(192,192,192,0.2);
&:nth-child(even) {
background: rgba(191,191,191,0.2);
}
&:nth-child(odd) {
background: rgba(223,223,223,0.2);
}
}
.categories {
li {
.default;
.icon {
float: left;
margin-right: 1em;
}
a {
font-size: 20px;
}
}
}
.topics {
li {
.default;
}
.teaser {
img {
float: left;
}
}
}
.posts {
li {
.default;
}
}
}