WowPress-Tailwind/tailwind/tailwind-editor-extra.css

23 lines
677 B
CSS
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/**
* Additional styles applied only to the WordPress editor
*
* It is sometimes necessary to add additional styles for the WordPress block
* editor, generally to improve the editor experience. For example, you may
* want to tweak the appearance of the title area to better match your sites
* front end, or you may need to change the appearance of a block to better
* distinguish between its fields while editing.
*
* Those styles should be added in this file, and they will be added only to
* the block editor.
*/
.bg-glass{
background-color: rgba(0, 0, 50, 0.4);
backdrop-filter: blur(10px);
}
.entry-header,
.entry-content {
@apply px-8 bg-glass;
}