|
@@ -54,13 +54,13 @@ body .wp-block[data-align="full"] {
|
|
|
|
|
|
@media only screen and (min-width: 768px) {
|
|
@media only screen and (min-width: 768px) {
|
|
.wp-block {
|
|
.wp-block {
|
|
- width: calc(8 * (100vw / 12));
|
|
|
|
|
|
+ width: calc(8 * (100vw / 12) - 28px);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@media only screen and (min-width: 1168px) {
|
|
@media only screen and (min-width: 1168px) {
|
|
.wp-block {
|
|
.wp-block {
|
|
- width: calc(6 * (100vw / 12 ));
|
|
|
|
|
|
+ width: calc(6 * (100vw / 12) - 28px);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -68,6 +68,10 @@ body .wp-block[data-align="full"] {
|
|
width: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.block-editor-block-list__layout {
|
|
|
|
+ padding: 0;
|
|
|
|
+}
|
|
|
|
+
|
|
/** === Base Typography === */
|
|
/** === Base Typography === */
|
|
body {
|
|
body {
|
|
font-size: 22px;
|
|
font-size: 22px;
|
|
@@ -196,23 +200,46 @@ figcaption,
|
|
}
|
|
}
|
|
|
|
|
|
/** === Post Title === */
|
|
/** === Post Title === */
|
|
|
|
+.editor-post-title {
|
|
|
|
+ margin-left: auto;
|
|
|
|
+ margin-right: auto;
|
|
|
|
+ padding: 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+@media only screen and (min-width: 768px) {
|
|
|
|
+ .editor-post-title {
|
|
|
|
+ width: calc(8 * (100vw / 12) - 28px);
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+@media only screen and (min-width: 1168px) {
|
|
|
|
+ .editor-post-title {
|
|
|
|
+ width: calc(6 * (100vw / 12) - 28px);
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
.editor-post-title__block {
|
|
.editor-post-title__block {
|
|
|
|
+ font-size: 22px;
|
|
margin: 0;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
|
|
.editor-post-title__block:before {
|
|
.editor-post-title__block:before {
|
|
- width: 2.8125em;
|
|
|
|
margin-top: 0;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
margin-bottom: 0;
|
|
- margin-left: 1em;
|
|
|
|
position: relative;
|
|
position: relative;
|
|
top: 0.5em;
|
|
top: 0.5em;
|
|
}
|
|
}
|
|
|
|
|
|
.editor-post-title__block .editor-post-title__input {
|
|
.editor-post-title__block .editor-post-title__input {
|
|
font-family: "Poppins", sans-serif;
|
|
font-family: "Poppins", sans-serif;
|
|
- font-size: 2.8125em;
|
|
|
|
- font-weight: 700;
|
|
|
|
|
|
+ font-size: 1.125em;
|
|
|
|
+ font-weight: 600;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+@media only screen and (min-width: 768px) {
|
|
|
|
+ .editor-post-title__block .editor-post-title__input {
|
|
|
|
+ font-size: 1.6875em;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
/** === Default Appender === */
|
|
/** === Default Appender === */
|