|
@@ -41,6 +41,135 @@
|
|
text-align: right;
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.wp-block-cover.is-style-quadrat-cover-diamond::after {
|
|
|
|
+ background-image: url(rotated.svg);
|
|
|
|
+ background-position: center;
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
|
+ background-size: auto 70%;
|
|
|
|
+ content: "";
|
|
|
|
+ mix-blend-mode: soft-light;
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 0;
|
|
|
|
+ left: 0;
|
|
|
|
+ bottom: 0;
|
|
|
|
+ right: 0;
|
|
|
|
+ z-index: 0 !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-cover.is-style-quadrat-cover-diamond.has-white-background-color.wp-block-cover.has-background-dim:not(.has-background-gradient)::before, .wp-block-cover.is-style-quadrat-cover-diamond.has-black-background-color.wp-block-cover.has-background-dim:not(.has-background-gradient)::before {
|
|
|
|
+ opacity: 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-cover.is-style-quadrat-cover-diamond.has-white-background-color::after, .wp-block-cover.is-style-quadrat-cover-diamond.has-black-background-color::after {
|
|
|
|
+ mix-blend-mode: normal;
|
|
|
|
+ -webkit-mask-image: url(rotated.svg);
|
|
|
|
+ mask-image: url(rotated.svg);
|
|
|
|
+ -webkit-mask-repeat: no-repeat;
|
|
|
|
+ mask-repeat: no-repeat;
|
|
|
|
+ -webkit-mask-size: auto 70%;
|
|
|
|
+ mask-size: auto 70%;
|
|
|
|
+ -webkit-mask-position: center;
|
|
|
|
+ mask-position: center;
|
|
|
|
+ opacity: 0.25;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-cover.is-style-quadrat-cover-diamond.has-white-background-color::after {
|
|
|
|
+ background: #000;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.wp-block-cover.is-style-quadrat-cover-diamond.has-black-background-color::after {
|
|
|
|
+ background: #fff;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.is-style-quadrat-diamond-posts .post-meta {
|
|
|
|
+ justify-content: flex-start;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.is-style-quadrat-diamond-posts .wp-block-query-pagination a,
|
|
|
|
+.is-style-quadrat-diamond-posts .post-meta a {
|
|
|
|
+ text-decoration: none;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.is-style-quadrat-diamond-posts .wp-block-query-pagination a:hover,
|
|
|
|
+.is-style-quadrat-diamond-posts .post-meta a:hover {
|
|
|
|
+ text-decoration: underline;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.is-style-quadrat-diamond-posts .wp-block-column {
|
|
|
|
+ flex-basis: auto;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+@media (min-width: 600px) {
|
|
|
|
+ .is-style-quadrat-diamond-posts .wp-block-column:last-child {
|
|
|
|
+ max-width: 300px;
|
|
|
|
+ flex-shrink: 0;
|
|
|
|
+ }
|
|
|
|
+ .is-style-quadrat-diamond-posts .wp-block-column:first-child {
|
|
|
|
+ padding-right: 2em;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.is-style-quadrat-diamond-posts .wp-block-post-featured-image {
|
|
|
|
+ width: 300px;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+@media (max-width: 599px) {
|
|
|
|
+ .is-style-quadrat-diamond-posts .wp-block-post-featured-image {
|
|
|
|
+ width: 100%;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.is-style-quadrat-diamond-posts .wp-block-post-featured-image img {
|
|
|
|
+ -o-object-fit: cover;
|
|
|
|
+ object-fit: cover;
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 300px;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.is-style-quadrat-diamond-posts .wp-block-post-template li {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ min-height: 400px;
|
|
|
|
+ position: relative;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.is-style-quadrat-diamond-posts .wp-block-post-template li > * {
|
|
|
|
+ flex-basis: 100%;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.is-style-quadrat-diamond-posts .wp-block-post-template li:before {
|
|
|
|
+ content: "";
|
|
|
|
+ background: var(--wp--preset--color--secondary);
|
|
|
|
+ width: 375px;
|
|
|
|
+ height: 375px;
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 0;
|
|
|
|
+ left: 0;
|
|
|
|
+ z-index: -1;
|
|
|
|
+ opacity: 0;
|
|
|
|
+ transition: all 0.4s ease-in;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.is-style-quadrat-diamond-posts .wp-block-post-template li:hover:before {
|
|
|
|
+ opacity: 1;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.is-style-quadrat-diamond-posts .wp-block-post-template li:nth-child(2n+1):before {
|
|
|
|
+ transform: rotate(16deg) translate(-130px, -20px);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.is-style-quadrat-diamond-posts .wp-block-post-template li:nth-child(2n+1):hover:before {
|
|
|
|
+ transform: rotate(-8deg) translate(-110px, 0);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.is-style-quadrat-diamond-posts .wp-block-post-template li:nth-child(2n+2):before {
|
|
|
|
+ transform: rotate(24deg) translate(-130px, 20px);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.is-style-quadrat-diamond-posts .wp-block-post-template li:nth-child(2n+2):hover:before {
|
|
|
|
+ transform: rotate(16deg) translate(-110px, 40px);
|
|
|
|
+}
|
|
|
|
+
|
|
.wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
|
|
.wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
|
|
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
|
|
@@ -109,46 +238,6 @@
|
|
border-color: var(--wp--custom--color--secondary);
|
|
border-color: var(--wp--custom--color--secondary);
|
|
}
|
|
}
|
|
|
|
|
|
-.wp-block-cover.is-style-quadrat-cover-diamond::after {
|
|
|
|
- background-image: url(rotated.svg);
|
|
|
|
- background-position: center;
|
|
|
|
- background-repeat: no-repeat;
|
|
|
|
- background-size: auto 70%;
|
|
|
|
- content: "";
|
|
|
|
- mix-blend-mode: soft-light;
|
|
|
|
- position: absolute;
|
|
|
|
- top: 0;
|
|
|
|
- left: 0;
|
|
|
|
- bottom: 0;
|
|
|
|
- right: 0;
|
|
|
|
- z-index: 0 !important;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-cover.is-style-quadrat-cover-diamond.has-white-background-color.wp-block-cover.has-background-dim:not(.has-background-gradient)::before, .wp-block-cover.is-style-quadrat-cover-diamond.has-black-background-color.wp-block-cover.has-background-dim:not(.has-background-gradient)::before {
|
|
|
|
- opacity: 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-cover.is-style-quadrat-cover-diamond.has-white-background-color::after, .wp-block-cover.is-style-quadrat-cover-diamond.has-black-background-color::after {
|
|
|
|
- mix-blend-mode: normal;
|
|
|
|
- -webkit-mask-image: url(rotated.svg);
|
|
|
|
- mask-image: url(rotated.svg);
|
|
|
|
- -webkit-mask-repeat: no-repeat;
|
|
|
|
- mask-repeat: no-repeat;
|
|
|
|
- -webkit-mask-size: auto 70%;
|
|
|
|
- mask-size: auto 70%;
|
|
|
|
- -webkit-mask-position: center;
|
|
|
|
- mask-position: center;
|
|
|
|
- opacity: 0.25;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-cover.is-style-quadrat-cover-diamond.has-white-background-color::after {
|
|
|
|
- background: #000;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.wp-block-cover.is-style-quadrat-cover-diamond.has-black-background-color::after {
|
|
|
|
- background: #fff;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
ul ul {
|
|
ul ul {
|
|
list-style-type: disc;
|
|
list-style-type: disc;
|
|
}
|
|
}
|
|
@@ -399,10 +488,16 @@ ul ul {
|
|
margin-left: 20%;
|
|
margin-left: 20%;
|
|
}
|
|
}
|
|
|
|
|
|
-.wp-block-query-loop .wp-block-post-title {
|
|
|
|
|
|
+.wp-block-query-loop .wp-block-post-title,
|
|
|
|
+.wp-block-query .wp-block-post-title {
|
|
font-size: var(--wp--custom--heading--h3--font-size);
|
|
font-size: var(--wp--custom--heading--h3--font-size);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.wp-block-query-loop .wp-block-post-excerpt__more-text,
|
|
|
|
+.wp-block-query .wp-block-post-excerpt__more-text {
|
|
|
|
+ font-size: var(--wp--preset--font-size--tiny) !important;
|
|
|
|
+}
|
|
|
|
+
|
|
.wp-block-query-pagination {
|
|
.wp-block-query-pagination {
|
|
border-top: 1px solid var(--wp--custom--color--primary);
|
|
border-top: 1px solid var(--wp--custom--color--primary);
|
|
}
|
|
}
|
|
@@ -630,6 +725,11 @@ textarea:focus {
|
|
margin: 0 8px;
|
|
margin: 0 8px;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.post-meta > *::before,
|
|
|
|
+.post-meta .wp-block-post-date::before {
|
|
|
|
+ content: "";
|
|
|
|
+}
|
|
|
|
+
|
|
.post-meta .wp-block-post-terms {
|
|
.post-meta .wp-block-post-terms {
|
|
margin-left: 0;
|
|
margin-left: 0;
|
|
color: transparent;
|
|
color: transparent;
|
|
@@ -645,6 +745,10 @@ textarea:focus {
|
|
color: var(--wp--custom--color--foreground);
|
|
color: var(--wp--custom--color--foreground);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.post-meta .wp-block-post-terms a:not(:last-child):after {
|
|
|
|
+ content: ",";
|
|
|
|
+}
|
|
|
|
+
|
|
.wp-block-query .wp-block-post-featured-image {
|
|
.wp-block-query .wp-block-post-featured-image {
|
|
margin-top: calc( var(--wp--custom--margin--vertical) / 2);
|
|
margin-top: calc( var(--wp--custom--margin--vertical) / 2);
|
|
}
|
|
}
|