update fixes #4
This commit is contained in:
parent
b424098f75
commit
3586e4c317
1 changed files with 22 additions and 14 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue