From fd6c7d0573155f1e9183f7c4ab930f0e1e4b1bfd Mon Sep 17 00:00:00 2001 From: mathias Date: Fri, 26 Jul 2019 01:32:54 +0300 Subject: [PATCH] Actually apply style correctly --- _includes/style.scss | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/_includes/style.scss b/_includes/style.scss index ae4eebe..ad62cf5 100644 --- a/_includes/style.scss +++ b/_includes/style.scss @@ -216,15 +216,15 @@ header h1 { padding: 0; } -.news li:nth-child(even) { +.news ~ li:nth-child(even) { animation: left-in-delayed .7s; } -.news li:nth-child(odd) { +.news ~ li:nth-child(odd) { animation: right-in-delayed .7s; } -.news li { +.news ~ li { background: $accentcolor; border-radius: .375em; box-shadow: 0 2px 1px rgba(0, 0, 0, .04); @@ -237,7 +237,7 @@ header h1 { text-shadow: none; } -.news li:after { +.news ~ li:after { content: ''; position: absolute; top: 50%; @@ -245,14 +245,14 @@ header h1 { margin-top: -.625em; } -.news li:nth-child(even):after { +.news ~ li:nth-child(even):after { left: 0; border-right-color: $accentcolor; border-left: 0; margin-left: -.5em; } -.news li:nth-child(odd):after { +.news ~ li:nth-child(odd):after { right: 0; border-left-color: $accentcolor; border-right: 0;