mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 19:56:41 +02:00
Fix reversed media query for bullted list
This commit is contained in:
11
main.less
11
main.less
@@ -475,10 +475,13 @@ body {
|
|||||||
.post-item {
|
.post-item {
|
||||||
.flex-display();
|
.flex-display();
|
||||||
.align-items(center);
|
.align-items(center);
|
||||||
list-style: none;
|
display: list-item;
|
||||||
|
list-style: disc inside;
|
||||||
|
|
||||||
.meta {
|
.meta {
|
||||||
.meta();
|
.meta();
|
||||||
|
display: none;
|
||||||
|
|
||||||
min-width: 100px;
|
min-width: 100px;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
margin-right: @vspacing/2;
|
margin-right: @vspacing/2;
|
||||||
@@ -533,10 +536,10 @@ body {
|
|||||||
.container {
|
.container {
|
||||||
.content {
|
.content {
|
||||||
.post-item {
|
.post-item {
|
||||||
display: list-item;
|
list-style: none;
|
||||||
list-style: disc inside;
|
|
||||||
.meta {
|
.meta {
|
||||||
display: none;
|
display: block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -478,11 +478,13 @@ body {
|
|||||||
-moz-align-items: center;
|
-moz-align-items: center;
|
||||||
-ms-align-items: center;
|
-ms-align-items: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
list-style: none;
|
display: list-item;
|
||||||
|
list-style: disc inside;
|
||||||
}
|
}
|
||||||
.section.main .container .content .post-item .meta {
|
.section.main .container .content .post-item .meta {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: #999;
|
color: #999;
|
||||||
|
display: none;
|
||||||
min-width: 100px;
|
min-width: 100px;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
margin-right: 16px;
|
margin-right: 16px;
|
||||||
@@ -519,11 +521,10 @@ body {
|
|||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
.section.main .container .content .post-item {
|
.section.main .container .content .post-item {
|
||||||
display: list-item;
|
list-style: none;
|
||||||
list-style: disc inside;
|
|
||||||
}
|
}
|
||||||
.section.main .container .content .post-item .meta {
|
.section.main .container .content .post-item .meta {
|
||||||
display: none;
|
display: block;
|
||||||
}
|
}
|
||||||
.section.main.post {
|
.section.main.post {
|
||||||
padding-top: 60px;
|
padding-top: 60px;
|
||||||
|
Reference in New Issue
Block a user