From 3586e4c317dbdf1a325c9ac3462cacf6f489800f Mon Sep 17 00:00:00 2001 From: Vrifox Date: Sat, 10 Oct 2020 17:09:26 +0200 Subject: [PATCH] update fixes #4 --- scss/import/blog.scss | 36 ++++++++++++++++++++++-------------- 1 file changed, 22 insertions(+), 14 deletions(-) diff --git a/scss/import/blog.scss b/scss/import/blog.scss index 4901f1f..4ad8cc9 100644 --- a/scss/import/blog.scss +++ b/scss/import/blog.scss @@ -42,10 +42,13 @@ body { } .read-more-button-wrap { a.more-link { - .faux-button { // Button: »Weiterlesen« - background: $blau !important; - padding: 0.5em 2.2em !important; // Groesse aendern - text-transform: none !important; // nicht unterstrichen + .faux-button { // Button: "Weiterlesen" + background: $blau; + color: rgb(245, 245, 255); + font-weight: initial; + padding: 10px 40px; // Groesse aendern + text-transform: none; // nicht unterstrichen + transition: background .2s; &:hover { text-decoration: none; background: $blau-dark; @@ -147,12 +150,15 @@ body.post-template { article.comment-body { footer.comment-footer-meta { .comment-reply { - a.comment-reply-link { // Button: »Kommentieren« - background: $blau !important; - text-transform: none !important; + a.comment-reply-link { // Button: "Kommentieren" + background: $blau ; + color: rgb(245, 245, 255); + font-weight: initial; + text-transform: none; + transition: background .2s; &:hover { - text-decoration: none; background: $blau-dark; + text-decoration: none; } } } @@ -183,14 +189,16 @@ body.post-template { } } .form-submit { - .submit { - background: $blau !important; - color: rgb(255, 255, 255); - padding: 0.5em 2.2em !important; // Groesse aendern - text-transform: none !important; // nicht unterstrichen + .submit { // Button "Kommentar abschicken" + background: $blau; + color: rgb(245, 245, 255); + font-weight: initial; + padding: 10px 40px; // Groesse aendern + text-transform: none; // nicht unterstrichen + transition: background .2s; &:hover { - text-decoration: none; background: $blau-dark; + text-decoration: none; } } }