123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- /*
- Theme Name: Radcliffe 2 - Modern Style Pack
- Description: Used to style Gutenberg Blocks in the editor.
- */
- /*--------------------------------------------------------------
- >>> TABLE OF CONTENTS:
- ----------------------------------------------------------------
- 1.0 General Typography
- 2.0 General Block Settings
- 3.0 Blocks - Common
- 4.0 Blocks - Formatting
- 5.0 Blocks - Widgets
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- 1.0 General Typography
- --------------------------------------------------------------*/
- /* Temporary method to include Google Fonts */
- @import url( "https://fonts.googleapis.com/css?family=Montserrat:400,400italic,700,700italic" );
- @import url( "https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,700,700italic" );
- .edit-post-visual-editor .editor-block-list__block,
- .editor-default-block-appender textarea.editor-default-block-appender__content {
- font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, arial, sans-serif;
- }
- /* Color */
- .edit-post-visual-editor .editor-block-list__block {
- color: #222;
- }
- /* Post title */
- .editor-post-title__block .editor-post-title__input {
- font-family: 'Montserrat', 'Helvetica Neue', Helvetica, arial, sans-serif;
- text-align: left;
- }
- .rtl .editor-post-title__block .editor-post-title__input {
- text-align: right;
- }
- @media screen and (min-width: 768px) {
- .edit-post-visual-editor textarea.editor-post-title__input {
- max-width: 770px;
- margin-left: auto;
- margin-right: auto;
- }
- }
- /* Headings */
- .edit-post-visual-editor h1,
- .wp-block-freeform.block-library-rich-text__tinymce h1,
- .edit-post-visual-editor h2,
- .wp-block-freeform.block-library-rich-text__tinymce h2,
- .edit-post-visual-editor h3,
- .wp-block-freeform.block-library-rich-text__tinymce h3,
- .edit-post-visual-editor h4,
- .wp-block-freeform.block-library-rich-text__tinymce h4,
- .edit-post-visual-editor h5,
- .wp-block-freeform.block-library-rich-text__tinymce h5,
- .edit-post-visual-editor h6,
- .wp-block-freeform.block-library-rich-text__tinymce h6 {
- font-family: 'Montserrat', 'Helvetica Neue', Helvetica, arial, sans-serif;
- text-transform: none;
- }
- /*--------------------------------------------------------------
- 2.0 General Block Settings
- --------------------------------------------------------------*/
- /* Links */
- .edit-post-visual-editor a,
- .editor-block-list__block a,
- .wp-block-freeform.block-library-rich-text__tinymce a {
- color: #aaa;
- }
- /*--------------------------------------------------------------
- 3.0 Blocks - Common
- --------------------------------------------------------------*/
- /* File */
- .wp-block-file__textlink {
- color: #aaa;
- }
- /*--------------------------------------------------------------
- 4.0 Blocks - Formatting
- --------------------------------------------------------------*/
- /* Buttons */
- /*--------------------------------------------------------------
- 5.0 Blocks - Widgets
- --------------------------------------------------------------*/
- /* Latest Comments */
- .wp-block-latest-comments__comment-meta {
- font-family: inherit;
- }
|