Hide dates in posts list for smaller screens

Replace the date meta data with bulleted list
This commit is contained in:
Nishanth Shanmugham
2015-12-21 02:03:24 -06:00
parent a58f1b6e4f
commit d1de38e47a
2 changed files with 19 additions and 0 deletions

View File

@@ -529,6 +529,18 @@ body {
.section.main {
padding-top: 0;
padding-bottom: 0;
.container {
.content {
.post-item {
display: list-item;
list-style: disc inside;
.meta {
display: none;
}
}
}
}
}
.section.main.post {

View File

@@ -518,6 +518,13 @@ body {
padding-top: 0;
padding-bottom: 0;
}
.section.main .container .content .post-item {
display: list-item;
list-style: disc inside;
}
.section.main .container .content .post-item .meta {
display: none;
}
.section.main.post {
padding-top: 60px;
padding-bottom: 60px;