Don't apply list style to normal lists

This commit is contained in:
mathias 2019-07-26 01:25:00 +03:00
parent 4071e727db
commit 5cf784878d

View file

@ -212,19 +212,19 @@ header h1 {
font-size: 2.5em; font-size: 2.5em;
} }
ul { .news {
padding: 0; padding: 0;
} }
li:nth-child(even) { .news li:nth-child(even) {
animation: left-in-delayed .7s; animation: left-in-delayed .7s;
} }
li:nth-child(odd) { .news li:nth-child(odd) {
animation: right-in-delayed .7s; animation: right-in-delayed .7s;
} }
li { .news li {
background: $accentcolor; background: $accentcolor;
border-radius: .375em; border-radius: .375em;
box-shadow: 0 2px 1px rgba(0, 0, 0, .04); box-shadow: 0 2px 1px rgba(0, 0, 0, .04);
@ -237,7 +237,7 @@ li {
text-shadow: none; text-shadow: none;
} }
li:after { .news li:after {
content: ''; content: '';
position: absolute; position: absolute;
top: 50%; top: 50%;
@ -245,26 +245,26 @@ li:after {
margin-top: -.625em; margin-top: -.625em;
} }
li:nth-child(even):after { .news li:nth-child(even):after {
left: 0; left: 0;
border-right-color: $accentcolor; border-right-color: $accentcolor;
border-left: 0; border-left: 0;
margin-left: -.5em; margin-left: -.5em;
} }
li:nth-child(odd):after { .news li:nth-child(odd):after {
right: 0; right: 0;
border-left-color: $accentcolor; border-left-color: $accentcolor;
border-right: 0; border-right: 0;
margin-right: -.5em; margin-right: -.5em;
} }
li p { .news p {
margin: 0 0 .4em; margin: 0 0 .4em;
text-align: left; text-align: left;
} }
li svg { .news svg {
fill: $lightcolor; fill: $lightcolor;
height: 1em; height: 1em;
padding: 0 .250em 0 0; padding: 0 .250em 0 0;
@ -272,7 +272,7 @@ li svg {
width: 1em; width: 1em;
} }
li span { .news span {
font-size: .750em; font-size: .750em;
} }