'fancy-border', 'label' => __('Fancy Border', 'ascora'), 'inline_style' => '.wp-block-image.is-style-fancy-border img { border: 5px solid #273c75; border-radius: 15px; padding: 5px; background-color: #f5f6fa; }', ) ); // Register block styles for quote register_block_style( 'core/quote', array( 'name' => 'highlighted-quote', 'label' => __('Highlighted Quote', 'ascora'), 'inline_style' => '.wp-block-quote.is-style-highlighted-quote { background-color: #f5f6fa; border-left: 5px solid #e1b12c; padding: 15px; font-style: italic; }', ) ); // Register block styles for button register_block_style( 'core/button', array( 'name' => 'outline-button', 'label' => __('Outline Button', 'ascora'), 'inline_style' => '.wp-block-button.is-style-outline-button .wp-block-button__link { border: 2px solid #273c75; background: transparent; color: #273c75; } .wp-block-button.is-style-outline-button .wp-block-button__link:hover { background: #273c75; color: #fff; }', ) ); } } // Instantiate the class new Ascora_Block_Styles();