This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Enqueue WordPress theme styles within Gutenberg. | |
*/ | |
function organic_origin_gutenberg_styles() { | |
wp_enqueue_style( 'organic-origin-gutenberg', get_theme_file_uri( '/css/gutenberg.css' ), false, '1.0', 'all' ); | |
} | |
add_action( 'enqueue_block_editor_assets', 'organic_origin_gutenberg_styles' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.edit-post-visual-editor h2.editor-rich-text__tinymce { | |
font-family: Arial, sans-serif; | |
font-size: 32px; | |
font-weight: bold; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h2 { | |
font-family: Arial, sans-serif; | |
font-size: 32px; | |
font-weight: bold; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/************************************************ | |
Gutenberg Editor | |
************************************************/ | |
.block-editor .wp-block { | |
max-width: 760px; | |
} | |
.block-editor .wp-block[data-align="wide"] { | |
max-width: 920px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/************************************************ | |
Audio Blocks | |
************************************************/ | |
.wp-block-audio { | |
margin-left: 0px; | |
margin-right: 0px; | |
} | |
.wp-block-audio audio { | |
width: 100%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div[class*="wp-block"], | |
figure[class*="wp-block"], | |
blockquote[class*="wp-block"] { | |
margin-top: 32px; | |
margin-bottom: 32px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media screen and (max-width: 767px) { | |
.origin-sidebar-inactive.origin-singular .alignfull, | |
.origin-sidebar-inactive.origin-singular .alignwide { | |
width: calc(100% + 72px); | |
max-width: calc(100% + 72px); | |
margin-left: -36px; | |
left: auto; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Global Wide And Full Alignment Styles */ | |
.alignwide, .alignfull { | |
position: relative; | |
width: 100%; | |
margin-left: 0px; | |
margin-right: 0px; | |
} | |
/* Full Block Alignment If Sidebar Is Not Present */ | |
.origin-sidebar-inactive.origin-singular .alignfull { | |
width: 100vw; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function organic_origin_setup() { | |
/* | |
* Enable support for wide alignment class for Gutenberg blocks. | |
*/ | |
add_theme_support( 'align-wide' ); | |
} | |
add_action( 'after_setup_theme', 'organic_origin_setup' ); |