1
1
Fork 0

update fixes #4

This commit is contained in:
Vrifox 2020-10-10 17:09:26 +02:00
parent b424098f75
commit 3586e4c317

View file

@ -42,10 +42,13 @@ body {
} }
.read-more-button-wrap { .read-more-button-wrap {
a.more-link { a.more-link {
.faux-button { // Button: »Weiterlesen« .faux-button { // Button: "Weiterlesen"
background: $blau !important; background: $blau;
padding: 0.5em 2.2em !important; // Groesse aendern color: rgb(245, 245, 255);
text-transform: none !important; // nicht unterstrichen font-weight: initial;
padding: 10px 40px; // Groesse aendern
text-transform: none; // nicht unterstrichen
transition: background .2s;
&:hover { &:hover {
text-decoration: none; text-decoration: none;
background: $blau-dark; background: $blau-dark;
@ -147,12 +150,15 @@ body.post-template {
article.comment-body { article.comment-body {
footer.comment-footer-meta { footer.comment-footer-meta {
.comment-reply { .comment-reply {
a.comment-reply-link { // Button: »Kommentieren« a.comment-reply-link { // Button: "Kommentieren"
background: $blau !important; background: $blau ;
text-transform: none !important; color: rgb(245, 245, 255);
font-weight: initial;
text-transform: none;
transition: background .2s;
&:hover { &:hover {
text-decoration: none;
background: $blau-dark; background: $blau-dark;
text-decoration: none;
} }
} }
} }
@ -183,14 +189,16 @@ body.post-template {
} }
} }
.form-submit { .form-submit {
.submit { .submit { // Button "Kommentar abschicken"
background: $blau !important; background: $blau;
color: rgb(255, 255, 255); color: rgb(245, 245, 255);
padding: 0.5em 2.2em !important; // Groesse aendern font-weight: initial;
text-transform: none !important; // nicht unterstrichen padding: 10px 40px; // Groesse aendern
text-transform: none; // nicht unterstrichen
transition: background .2s;
&:hover { &:hover {
text-decoration: none;
background: $blau-dark; background: $blau-dark;
text-decoration: none;
} }
} }
} }