1
1
Fork 0
This commit is contained in:
Vrifox 2020-10-10 16:28:29 +02:00
parent 3a509a1043
commit bff2aa34dc
2 changed files with 67 additions and 68 deletions

1
.gitignore vendored
View file

@ -1,4 +1,3 @@
/_generated/* /_generated/*
deploy.sh
*.kate-swp *.kate-swp

View file

@ -24,8 +24,28 @@ body {
} }
main { main {
article { article {
.cover-header {
.cover-header-inner-wrapper {
.cover-header-inner {
header.entry-header {
.entry-header-inner {
.post-meta-wrapper {
ul.post-meta {
li.post-author {
display: none; // Autor im Beitragsheader ausblenden
}
}
}
}
}
}
}
}
.post-inner { .post-inner {
.entry-content { .entry-content {
a {
color: $blau-light !important;
}
.read-more-button-wrap { .read-more-button-wrap {
a.more-link { a.more-link {
.faux-button { // Button: »Weiterlesen« .faux-button { // Button: »Weiterlesen«
@ -91,28 +111,8 @@ body {
body.post-template { body.post-template {
main { main {
article.post { article.post {
.cover-header {
.cover-header-inner-wrapper {
.cover-header-inner {
header.entry-header {
.entry-header-inner {
.post-meta-wrapper {
ul.post-meta {
li.post-author {
display: none; // Autor im Beitragsheader ausblenden
}
}
}
}
}
}
}
}
.post-inner { .post-inner {
.entry-content { .entry-content {
a {
color: $blau-light !important;
}
.yarpp-related { .yarpp-related {
margin: 3em auto 0 auto !important; margin: 3em auto 0 auto !important;
ol { ol {
@ -138,67 +138,67 @@ body.post-template {
} }
} }
} }
nav.pagination-single { }
.pagination-single-inner { .pagination-single {
.previous-post, .pagination-single-inner {
.next-post { .previous-post,
color: $blau-light !important; .next-post {
} color: $blau-light !important;
} }
} }
.comments-wrapper { }
.comments { .comments-wrapper {
.comments-inner { .comments {
article.comment-body { .comments-inner {
footer.comment-footer-meta { article.comment-body {
.comment-reply { footer.comment-footer-meta {
a.comment-reply-link { // Button: »Kommentieren« .comment-reply {
background: $blau !important; a.comment-reply-link { // Button: »Kommentieren«
text-transform: none !important; background: $blau !important;
&:hover { text-transform: none !important;
text-decoration: none; &:hover {
background: $blau-dark; text-decoration: none;
} background: $blau-dark;
} }
} }
} }
} }
} }
} }
.comment-respond { }
.section-inner { .comment-respond {
.comment-form-comment { .section-inner {
textarea#comment { .comment-form-comment {
textarea#comment {
background: rgb(37, 45, 57);
border: 0;
color: rgb(255, 255, 255);
}
}
.comment-form-author,
.comment-form-email,
.comment-form-url {
input {
&#author,
&#email,
&#url {
background: rgb(37, 45, 57); background: rgb(37, 45, 57);
border: 0; border: 0;
color: rgb(255, 255, 255); color: rgb(255, 255, 255);
} }
} }
.comment-form-author, }
.comment-form-email, .form-submit {
.comment-form-url { .submit {
input { background: $blau !important;
&#author, color: rgb(255, 255, 255);
&#email, padding: 0.5em 2.2em !important; // Groesse aendern
&#url { text-transform: none !important; // nicht unterstrichen
background: rgb(37, 45, 57); &:hover {
border: 0; text-decoration: none;
color: rgb(255, 255, 255); background: $blau-dark;
}
} }
} }
.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
&:hover {
text-decoration: none;
background: $blau-dark;
}
}
}
} }
} }
} }