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 {
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;
}
}
}