closes #8
This commit is contained in:
parent
b625f4249e
commit
1e10ddc3dc
3 changed files with 56 additions and 38 deletions
|
@ -14,39 +14,3 @@ $type: blog;
|
|||
|
||||
@import 'import/blog-meta.scss';
|
||||
@import 'import/blog.scss';
|
||||
|
||||
//
|
||||
// ToDo
|
||||
//
|
||||
|
||||
|
||||
.related_post a {
|
||||
color: #979ba9 !important;
|
||||
}
|
||||
|
||||
|
||||
/* Bildbeschreibungen nur unter Artikelbildern werden ausgeblendet */
|
||||
.featured-media-inner .wp-caption-text {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
.menu-modal a {
|
||||
color: #6db0ff !important;
|
||||
}
|
||||
|
||||
.archive-title .color-accent {
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
.nav-links a {
|
||||
color: #6db0ff !important;
|
||||
}
|
||||
|
||||
.wp-block-quote {
|
||||
border-color: #6db0ff !important;
|
||||
}
|
||||
|
||||
.search-submit {
|
||||
background: #6db0ff !important;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
$blau: rgb(70, 136, 222);
|
||||
$blau-dark: rgb(50, 116, 202);
|
||||
$blau-light: rgb(110, 176, 255);
|
||||
$blau-light: rgb(110, 176, 255); // #6db0ff
|
||||
$grau: rgb(155, 155, 170);
|
||||
|
|
|
@ -39,6 +39,24 @@ body {
|
|||
}
|
||||
.menu-modal {
|
||||
top: 32px; // Menu oben nach unten versetzen, damit sie unter der Topbar angezeigt werden
|
||||
.menu-modal-inner {
|
||||
.menu-wrapper {
|
||||
.menu-top,
|
||||
.menu-bottom {
|
||||
nav.expanded-menu {
|
||||
ul.modal-menu {
|
||||
li.menu-item {
|
||||
.ancestor-wrapper {
|
||||
a {
|
||||
color: $blau-light !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
main {
|
||||
article {
|
||||
|
@ -63,6 +81,11 @@ body {
|
|||
}
|
||||
.featured-media {
|
||||
margin-top: 0;
|
||||
.featured-media-inner {
|
||||
.wp-caption-text {
|
||||
display: none; // Bildbeschreibungen nur unter Artikelbildern werden ausgeblendet
|
||||
}
|
||||
}
|
||||
}
|
||||
.post-inner {
|
||||
padding-top: 40px; // Abstand zw. Artikelbildern und Inhalt verkleinern
|
||||
|
@ -70,6 +93,9 @@ body {
|
|||
a {
|
||||
color: $blau-light !important;
|
||||
}
|
||||
.wp-block-quote {
|
||||
border-color: $blau-light;
|
||||
}
|
||||
.read-more-button-wrap {
|
||||
a.more-link {
|
||||
.faux-button { // Button: "Weiterlesen"
|
||||
|
@ -89,6 +115,15 @@ body {
|
|||
}
|
||||
}
|
||||
}
|
||||
.pagination-wrapper {
|
||||
nav.pagination {
|
||||
.nav-links {
|
||||
a {
|
||||
color: $blau-light;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.footer-nav-widgets-wrapper {
|
||||
.footer-inner {
|
||||
|
@ -147,7 +182,8 @@ body {
|
|||
// article / post
|
||||
//
|
||||
|
||||
body.post-template {
|
||||
body.post-template,
|
||||
body.post-template-default {
|
||||
main {
|
||||
article.post {
|
||||
.post-inner {
|
||||
|
@ -338,6 +374,24 @@ body.tag {
|
|||
}
|
||||
}
|
||||
|
||||
//
|
||||
// tag (e.g. https://blog.natenom.com/2020/08/)
|
||||
//
|
||||
|
||||
body.archive {
|
||||
main {
|
||||
header.archive-header {
|
||||
.archive-header-inner {
|
||||
h1.archive-title {
|
||||
.color-accent {
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Lightbox Plugin
|
||||
//
|
||||
|
|
Reference in a new issue