|
@@ -71,6 +71,15 @@ Description: Used to style Gutenberg Blocks.
|
|
|
|
|
|
/* Wide Width */
|
|
|
|
|
|
+div[class$="inner-container"] .wp-block-columns {
|
|
|
+ margin: 0 auto;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+div[class$="inner-container"] .wp-block-columns:not(.alignwide, .alignfull) {
|
|
|
+ max-width: 840px;
|
|
|
+}
|
|
|
+
|
|
|
@media (min-width: 1024px) {
|
|
|
.alignwide {
|
|
|
width: 120%;
|
|
@@ -80,6 +89,12 @@ Description: Used to style Gutenberg Blocks.
|
|
|
position: relative;
|
|
|
}
|
|
|
|
|
|
+ div[class$="inner-container"] .wp-block-columns.alignwide {
|
|
|
+ width: calc(840px + 10%);
|
|
|
+ max-width: 100%;
|
|
|
+ margin: 0 auto;
|
|
|
+ }
|
|
|
+
|
|
|
.wp-block-embed.is-type-video.alignwide iframe {
|
|
|
width: 100% !important;
|
|
|
height: 100% !important;
|
|
@@ -89,7 +104,6 @@ Description: Used to style Gutenberg Blocks.
|
|
|
/*--------------------------------------------------------------
|
|
|
2.0 Blocks - Common Blocks
|
|
|
--------------------------------------------------------------*/
|
|
|
-
|
|
|
/* Paragraph */
|
|
|
|
|
|
p.has-drop-cap:not(:focus)::first-letter {
|