浏览代码

Radcliffe 2: Tidy up Gutenberg styles, including:
* Reorganize stylesheets to match other themes
* Fix up display issues with wide blocks, table blocks
* Don't make cover blocks wide unless they've been set as wide.
* Update file block styles in editor.

Laurel Fulford 6 年之前
父节点
当前提交
ae7ae6ba40

+ 119 - 9
radcliffe-2/assets/css/blocks-vintage.css

@@ -1,8 +1,24 @@
-.style-pack-vintage .alignwide,
-.style-pack-vintage .alignfull,
-.style-pack-vintage ul.wp-block-gallery.alignwide,
-.style-pack-vintage ul.wp-block-gallery.alignfull,
-.style-pack-vintage .wp-block-cover-image {
+/*
+Theme Name: Radcliffe 2 - Vintage
+Description: Used to style Gutenberg Blocks.
+*/
+
+/*--------------------------------------------------------------
+>>> TABLE OF CONTENTS:
+----------------------------------------------------------------
+1.0 General Block Alignments
+2.0 General Block Styles
+3.0 Blocks - Common
+4.0 Blocks - Formatting
+5.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/*--------------------------------------------------------------
+1.0 General Block Alignments
+--------------------------------------------------------------*/
+
+.style-pack-vintage .alignwide:not(.wp-block-cover):not(.wp-block-cover-image),
+.style-pack-vintage .alignfull:not(.wp-block-cover):not(.wp-block-cover-image) {
 	background-color: rgba(255,255,255,0.7);
 	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0.8+0,1+20,1+80,0.8+100 */
 	background: -moz-linear-gradient(top, rgba(255,255,255,0.6) 0%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 85%, rgba(255,255,255,0.6) 100%); /* FF3.6-15 */
@@ -13,10 +29,23 @@
 }
 
 .style-pack-vintage .wp-block-cover-image.alignleft,
-.style-pack-vintage .wp-block-cover-image.alignright {
+.style-pack-vintage .wp-block-cover.alignleft,
+.style-pack-vintage .wp-block-cover-image.alignright,
+.style-pack-vintage .wp-block-cover.alignright {
 	left: auto;
-	/*margin-left: 0;
-	margin-right: 0;*/
+}
+
+.style-pack-vintage .wp-block-cover-image.alignwide,
+.style-pack-vintage .wp-block-cover-image.alignfull,
+.style-pack-vintage .wp-block-cover.alignwide,
+.style-pack-vintage .wp-block-cover.alignfull {
+	border: 4px double #c7c4b4;
+	padding: 0;
+}
+
+.style-pack-vintage ul.wp-block-gallery.alignwide,
+.style-pack-vintage ul.wp-block-gallery.alignfull {
+	padding-bottom: 0;
 }
 
 @media (min-width: 750px) {
@@ -31,7 +60,6 @@
 	.style-pack-vintage .wp-block-categories.alignfull,
 	.style-pack-vintage .wp-block-verse.alignfull,
 	.style-pack-vintage p.alignfull,
-	.style-pack-vintage .wp-block-cover-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright),
 	.style-pack-vintage .wp-block-cover-image.alignfull {
 		margin-left: calc(30% - 30vw);
 		margin-right: calc(30% - 30vw);
@@ -61,3 +89,85 @@
 		max-width: 1000%;
 	}
 }
+
+/*--------------------------------------------------------------
+2.0 General Block Styles
+--------------------------------------------------------------*/
+
+
+.style-pack-vintage .alignfull .jetpack-video-wrapper,
+.style-pack-vintage .alignwide .jetpack-video-wrapper {
+	margin-bottom: 0;
+}
+
+/*--------------------------------------------------------------
+3.0 Blocks - Common
+--------------------------------------------------------------*/
+
+/* File */
+
+.style-pack-vintage .wp-block-file .wp-block-file__button {
+	border-radius: 0;
+	border: 3px double #c7c4b4;
+	font-family: inherit;
+}
+
+.style-pack-vintage .wp-block-file .wp-block-file__button:hover,
+.style-pack-vintage .wp-block-file .wp-block-file__button:focus {
+	background-color: #2b6e9d;
+	opacity: 1.0;
+}
+
+/*--------------------------------------------------------------
+4.0 Blocks - Formatting
+--------------------------------------------------------------*/
+
+/* Pullquote */
+
+.style-pack-vintage .wp-block-pullquote {
+	border-color: #c5c3bf;
+}
+
+/* Table */
+
+.style-pack-vintage .wp-block-table {
+	width: 100%;
+}
+
+@media (min-width: 750px) {
+	.style-pack-vintage .wp-block-table.alignwide {
+		width: 88vw;
+	}
+
+	.style-pack-vintage .wp-block-table.alignfull {
+		width: 92vw;
+	}
+}
+
+@media (min-width: 900px) {
+	.style-pack-vintage .wp-block-table.alignwide {
+		width: calc( 740px + 40vw - 40% );
+	}
+
+	.style-pack-vintage .wp-block-table.alignfull {
+		width: calc( 740px + 60vw - 60% );
+	}
+}
+
+/*--------------------------------------------------------------
+5.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/* Latest Comments */
+
+.style-pack-vintage .wp-block-latest-comments__comment-meta {
+	font-family: inherit;
+}
+
+.style-pack-vintage.single-post .wp-block-latest-comments article,
+.style-pack-vintage.page .wp-block-latest-comments article {
+	border: 0;
+	background: transparent;
+	max-width: 100%;
+	padding: 0;
+}

+ 216 - 29
radcliffe-2/assets/css/blocks.css

@@ -50,17 +50,19 @@ p.alignfull {
 	margin-right: auto;
 }
 
-@media (min-width: 750px) {
-	.alignfull {
-		margin-left: calc(50% - 50vw);
-		margin-right: calc(50% - 50vw);
+@media (min-width: 1160px) {
+	.alignwide {
+		margin-left: -25%;
+		margin-right: -25%;
 		width: auto;
 		max-width: 1000%;
 	}
+}
 
-	.alignwide {
-		margin-left: calc(25% - 25vw);
-		margin-right: calc(25% - 25vw);
+@media (min-width: 750px) {
+	.alignfull {
+		margin-left: calc(50% - 50vw);
+		margin-right: calc(50% - 50vw);
 		width: auto;
 		max-width: 1000%;
 	}
@@ -82,20 +84,6 @@ p.alignfull {
 		margin-right: calc(50% - 48vw);
 	}
 
-	.wp-block-text-columns.alignwide,
-	.wp-block-columns.alignwide,
-	.wp-block-table.alignwide,
-	.wp-block-preformatted.alignwide,
-	.wp-block-button.alignwide,
-	.wp-block-pullquote.alignwide,
-	.wp-block-latest-posts.alignwide,
-	.wp-block-latest-comments.alignwide,
-	.wp-block-categories.alignwide,
-	p.alignwide {
-		margin-left: calc(25% - 23vw);
-		margin-right: calc(25% - 23vw);
-	}
-
 	.wp-block-embed.is-type-video.alignwide iframe,
 	.wp-block-embed.is-type-video.alignfull iframe {
 		width: 100% !important;
@@ -254,15 +242,23 @@ ul.wp-block-gallery li {
 	padding: 9px 18px;
 }
 
+.style-pack-colorful .wp-block-file .wp-block-file__button,
+.style-pack-modern .wp-block-file .wp-block-file__button {
+	font-family: inherit;
+}
+
 .wp-block-file .wp-block-file__button:hover,
 .wp-block-file .wp-block-file__button:focus {
 	background: #ca2017;
 	opacity: 1.0;
 }
 
-/* Video */
+.rtl .wp-block-file * + .wp-block-file__button {
+	margin-left: 0.75em;
+	margin-right: 0;
+}
 
-.wp-block-video {}
+/* Video */
 
 .wp-block-video video,
 .wp-block-video iframe {
@@ -277,7 +273,7 @@ ul.wp-block-gallery li {
 
 .wp-block-verse {
 	background-color: transparent;
-	font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
+	font-family: inherit;
 	font-size: 1.1em;
 	font-style: italic;
 	line-height: 1.8;
@@ -295,9 +291,9 @@ ul.wp-block-gallery li {
 /* Pullquotes */
 
 .wp-block-pullquote {
-	border: none;
+	border-bottom: 2px solid #ddd;
+	border-top: 3px solid #ddd;
 	color: #666;
-	padding: 0;
 	margin-bottom: 0;
 }
 
@@ -306,6 +302,11 @@ ul.wp-block-gallery li {
 	opacity: 0.8;
 }
 
+.wp-block-pullquote blockquote::before,
+.wp-block-pullquote blockquote::after {
+	display: none;
+}
+
 /* Tables */
 
 .wp-block-table {
@@ -317,10 +318,21 @@ ul.wp-block-gallery li {
 	border: none;
 }
 
+.wp-block-table.alignwide,
 .wp-block-table.alignfull {
 	width: 96vw;
 }
 
+.wp-block-table.alignwide {
+	width: 100%;
+}
+
+@media (min-width: 1160px) {
+	.wp-block-table.alignwide {
+		width: 1110px;
+	}
+}
+
 /*--------------------------------------------------------------
 5.0 Blocks - Layout Elements
 --------------------------------------------------------------*/
@@ -336,6 +348,11 @@ ul.wp-block-gallery li {
 	padding: 9px 18px;
 }
 
+.style-pack-colorful .wp-block-file .wp-block-file__button,
+.style-pack-modern .wp-block-file .wp-block-file__button {
+	font-family: inherit;
+}
+
 .wp-block-button__link {
 	background: #222;
 	color: #fff;
@@ -357,8 +374,6 @@ ul.wp-block-gallery li {
 	display: block;
 }
 
-/* Columns */
-
 /* Separator */
 
 .wp-block-separator {
@@ -446,7 +461,8 @@ ul.wp-block-gallery li {
 
 /* Latest Comments */
 
-.wp-block-latest-comments {
+.wp-block-latest-comments.not(.alignwide),
+.wp-block-latest-comments.not(.alignfull) {
 	margin-left: 0;
 	margin-right: 0;
 }
@@ -463,6 +479,11 @@ ul.wp-block-gallery li {
 	margin-bottom: 0;
 }
 
+.style-pack-colorful .wp-block-latest-comments__comment-meta,
+.style-pack-modern .wp-block-latest-comments__comment-meta {
+	font-family: inherit;
+}
+
 .wp-block-latest-comments__comment-excerpt p {
 	font-size: 90%;
 }
@@ -476,6 +497,8 @@ ul.wp-block-gallery li {
 7.0 Blocks - Colors
 --------------------------------------------------------------*/
 
+/* Default */
+
 .has-white-color,
 .has-white-color:hover,
 .has-white-color:active,
@@ -539,3 +562,167 @@ ul.wp-block-gallery li {
 .has-red-background-color:visited {
 	background-color: #ca2017;
 }
+
+/* Modern */
+
+.has-modern-white-color,
+.has-modern-white-color:hover,
+.has-modern-white-color:active,
+.has-modern-white-color:focus,
+.has-modern-white-color:visited {
+	color: #fff;
+}
+
+.has-modern-white-background-color,
+.has-modern-white-background-color:hover,
+.has-modern-white-background-color:active,
+.has-modern-white-background-color:focus,
+.has-modern-white-background-color:visited {
+	background-color: #fff
+}
+
+.has-modern-light-gray-color,
+.has-modern-light-gray-color:hover,
+.has-modern-light-gray-color:active,
+.has-modern-light-gray-color:focus,
+.has-modern-light-gray-color:visited {
+	color: #f1f1f1;
+}
+
+.has-modern-light-gray-background-color,
+.has-modern-light-gray-background-color:hover,
+.has-modern-light-gray-background-color:active,
+.has-modern-light-gray-background-color:focus,
+.has-modern-light-gray-background-color:visited {
+	background-color: #f1f1f1
+}
+
+.has-modern-medium-gray-color,
+.has-modern-medium-gray-color:hover,
+.has-modern-medium-gray-color:active,
+.has-modern-medium-gray-color:focus,
+.has-modern-medium-gray-color:visited {
+	color: #aaa;
+}
+
+.has-modern-medium-gray-background-color,
+.has-modern-medium-gray-background-color:hover,
+.has-modern-medium-gray-background-color:active,
+.has-modern-medium-gray-background-color:focus,
+.has-modern-medium-gray-background-color:visited {
+	background-color: #aaa
+}
+
+.has-modern-dark-gray-color,
+.has-modern-dark-gray-color:hover,
+.has-modern-dark-gray-color:active,
+.has-modern-dark-gray-color:focus,
+.has-modern-dark-gray-color:visited {
+	color: #222;
+}
+
+.has-modern-dark-gray-background-color,
+.has-modern-dark-gray-background-color:hover,
+.has-modern-dark-gray-background-color:active,
+.has-modern-dark-gray-background-color:focus,
+.has-modern-dark-gray-background-color:visited {
+	background-color: #222
+}
+
+/* Colorful */
+
+.has-colorful-white-color,
+.has-colorful-white-color:hover,
+.has-colorful-white-color:active,
+.has-colorful-white-color:focus,
+.has-colorful-white-color:visited {
+	color: #fff;
+}
+
+.has-colorful-white-background-color,
+.has-colorful-white-background-color:hover,
+.has-colorful-white-background-color:active,
+.has-colorful-white-background-color:focus,
+.has-colorful-white-background-color:visited {
+	background-color: #fff
+}
+
+.has-colorful-light-gray-color,
+.has-colorful-light-gray-color:hover,
+.has-colorful-light-gray-color:active,
+.has-colorful-light-gray-color:focus,
+.has-colorful-light-gray-color:visited {
+	color: #e5e5e5;
+}
+
+.has-colorful-light-gray-background-color,
+.has-colorful-light-gray-background-color:hover,
+.has-colorful-light-gray-background-color:active,
+.has-colorful-light-gray-background-color:focus,
+.has-colorful-light-gray-background-color:visited {
+	background-color: #e5e5e5
+}
+
+.has-colorful-dark-gray-color,
+.has-colorful-dark-gray-color:hover,
+.has-colorful-dark-gray-color:active,
+.has-colorful-dark-gray-color:focus,
+.has-colorful-dark-gray-color:visited {
+	color: #222;
+}
+
+.has-colorful-dark-gray-background-color,
+.has-colorful-dark-gray-background-color:hover,
+.has-colorful-dark-gray-background-color:active,
+.has-colorful-dark-gray-background-color:focus,
+.has-colorful-dark-gray-background-color:visited {
+	background-color: #222
+}
+
+.has-colorful-blue-color,
+.has-colorful-blue-color:hover,
+.has-colorful-blue-color:active,
+.has-colorful-blue-color:focus,
+.has-colorful-blue-color:visited {
+	color: #4ba3c3;
+}
+
+.has-colorful-blue-background-color,
+.has-colorful-blue-background-color:hover,
+.has-colorful-blue-background-color:active,
+.has-colorful-blue-background-color:focus,
+.has-colorful-blue-background-color:visited {
+	background-color: #4ba3c3
+}
+
+.has-colorful-green-color,
+.has-colorful-green-color:hover,
+.has-colorful-green-color:active,
+.has-colorful-green-color:focus,
+.has-colorful-green-color:visited {
+	color: #71db9d;
+}
+
+.has-colorful-green-background-color,
+.has-colorful-green-background-color:hover,
+.has-colorful-green-background-color:active,
+.has-colorful-green-background-color:focus,
+.has-colorful-green-background-color:visited {
+	background-color: #71db9d
+}
+
+.has-colorful-orange-color,
+.has-colorful-orange-color:hover,
+.has-colorful-orange-color:active,
+.has-colorful-orange-color:focus,
+.has-colorful-orange-color:visited {
+	color: #d97059;
+}
+
+.has-colorful-orange-background-color,
+.has-colorful-orange-background-color:hover,
+.has-colorful-orange-background-color:active,
+.has-colorful-orange-background-color:focus,
+.has-colorful-orange-background-color:visited {
+	background-color: #d97059
+}

+ 85 - 63
radcliffe-2/assets/css/editor-style-colorful.css

@@ -1,11 +1,44 @@
-/*!
-Editor Styles for Radcliffe 2: Colorful Style Pack
+/*
+Theme Name: Radcliffe 2 - Colorful 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=Karla:400,400italic,700,700italic" );
 @import url( "https://fonts.googleapis.com/css?family=Inconsolata:400,700" );
 
+.edit-post-visual-editor .editor-block-list__block,
+.editor-default-block-appender input[type="text"].editor-default-block-appender__content {
+	font-family: Inconsolata, monospace;
+}
+
+/* Color */
+
+.edit-post-visual-editor .editor-block-list__block {
+	color: #222;
+}
+
+/* Post title */
+
+.editor-post-title__block .editor-post-title__input {
+	color: #4ba3c3;
+	font-family: 'Karla', 'Helvetica Neue', Helvetica, arial, sans-serif;
+}
+
 /* Widths */
 @media screen and (min-width: 768px) {
 	.edit-post-visual-editor textarea.editor-post-title__input {
@@ -13,83 +46,62 @@ Editor Styles for Radcliffe 2: Colorful Style Pack
 		margin-right: auto;
 		padding: 0 0 72px;
 		max-width: 92%;
-		width: 1040px;
+		width: 1070px;
 	}
 }
 
-/*--------------------------------------------------------------
-# Typography
---------------------------------------------------------------*/
-
-.edit-post-visual-editor,
-.edit-post-visual-editor p,
-.edit-post-visual-editor button,
-.edit-post-visual-editor input,
-.edit-post-visual-editor select,
-.edit-post-visual-editor optgroup,
-.edit-post-visual-editor textarea {
-	color: #222;
-	font-family: Inconsolata, monospace;
-}
+/* Headings */
 
-h1.mce-content-body,
-h2.mce-content-body,
-h3.mce-content-body,
-h4.mce-content-body,
-h5.mce-content-body,
-h6.mce-content-body,
-.mce-content-body h1,
-.mce-content-body h2,
-.mce-content-body h3,
-.mce-content-body h4,
-.mce-content-body h5,
-.mce-content-body h6,
-#poststuff h1,
-#poststuff h2,
-#poststuff h3,
-#poststuff h4,
-#poststuff h5,
-#poststuff h6 {
+.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 {
 	color: #71db9d;
 	font-family: 'Karla', 'Helvetica Neue', Helvetica, arial, sans-serif;
-}
-
-/* Post/Page title */
-.edit-post-visual-editor textarea.editor-post-title__input {
-	color: #4ba3c3;
-	font-family: 'Karla', 'Helvetica Neue', Helvetica, arial, sans-serif;
+	text-transform: none;
 }
 
 /*--------------------------------------------------------------
-# Navigation
+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: #d97059;
+}
+
 /*--------------------------------------------------------------
-## Links
+3.0 Blocks - Common
 --------------------------------------------------------------*/
-.mce-content-body a,
-.wp-block-freeform.core-blocks-rich-text__tinymce a,
-.wp-block-categories a,
-.wp-block-latest-posts a {
+
+/* File */
+
+.wp-block-file__textlink {
 	color: #d97059;
 }
 
-.mce-content-body a:hover,
-.mce-content-body a:focus,
-.mce-content-body a:active,
-.wp-block-freeform.core-blocks-rich-text__tinymce a:hover,
-.wp-block-freeform.core-blocks-rich-text__tinymce a:focus,
-.wp-block-freeform.core-blocks-rich-text__tinymce a:active,
-.wp-block-categories a:hover,
-.wp-block-categories a:focus,
-.wp-block-categories a:active,
-.wp-block-latest-posts a:hover,
-.wp-block-latest-posts a:focus,
-.wp-block-latest-posts a:active {
-	color: #e43a31;
+.wp-block-file .wp-block-file__button {
+	font-family: Inconsolata, monospace;
+}
+
+.wp-block-file .wp-block-file__button:hover,
+.wp-block-file .wp-block-file__button:focus {
+	background-color: #d97059;
 }
 
 /*--------------------------------------------------------------
-## Gutenberg Styles
+4.0 Blocks - Formatting
 --------------------------------------------------------------*/
 
 /* Buttons */
@@ -98,7 +110,17 @@ h6.mce-content-body,
 	font-family: Inconsolata, monospace;
 }
 
-.wp-block-button .wp-block-button__link:hover,
-.wp-block-button .wp-block-button__link:focus {
+.wp-block-button__link:hover,
+.wp-block-button__link:focus {
 	background-color: #d97059;
 }
+
+/*--------------------------------------------------------------
+5.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/* Latest Comments */
+
+.wp-block-latest-comments__comment-meta {
+	font-family: inherit;
+}

+ 88 - 52
radcliffe-2/assets/css/editor-style-modern.css

@@ -1,83 +1,119 @@
-/*!
-Editor Styles for Radcliffe 2: Modern Style Pack
+/*
+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" );
 
-/* Widths */
+.edit-post-visual-editor .editor-block-list__block,
+.editor-default-block-appender input[type="text"].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) {
-	/* Post/Page title */
 	.edit-post-visual-editor textarea.editor-post-title__input {
-		max-width: 740px;
+		max-width: 770px;
 		margin-left: auto;
 		margin-right: auto;
 	}
 }
 
-/*--------------------------------------------------------------
-# Typography
---------------------------------------------------------------*/
+/* Headings */
 
-.edit-post-visual-editor,
-.edit-post-visual-editor p,
-.edit-post-visual-editor button,
-.edit-post-visual-editor input,
-.edit-post-visual-editor select,
-.edit-post-visual-editor optgroup,
-.edit-post-visual-editor textarea {
-	font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, arial, sans-serif;
-}
-
-h1.mce-content-body,
-h2.mce-content-body,
-h3.mce-content-body,
-h4.mce-content-body,
-h5.mce-content-body,
-h6.mce-content-body,
-.edit-post-visual-editor textarea.editor-post-title__input,
-.mce-content-body h1,
-.mce-content-body h2,
-.mce-content-body h3,
-.mce-content-body h4,
-.mce-content-body h5,
-.mce-content-body h6,
-#poststuff h1,
-#poststuff h2,
-#poststuff h3,
-#poststuff h4,
-#poststuff h5,
-#poststuff h6 {
+.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;
-}
-
-/* Post/Page title */
-.edit-post-visual-editor textarea.editor-post-title__input {
-	padding: 0 0 72px;
-	text-align: left;
+	text-transform: none;
 }
 
 /*--------------------------------------------------------------
-# Navigation
+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;
+}
+
 /*--------------------------------------------------------------
-## Links
+3.0 Blocks - Common
 --------------------------------------------------------------*/
-.mce-content-body a,
-.wp-block-freeform.core-blocks-rich-text__tinymce a,
-.wp-block-categories a,
-.wp-block-latest-posts a {
+
+/* File */
+
+.wp-block-file__textlink {
 	color: #aaa;
 }
 
+.wp-block-file .wp-block-file__button:hover,
+.wp-block-file .wp-block-file__button:focus {
+	background-color: #aaa;
+}
+
 /*--------------------------------------------------------------
-## Gutenberg Styles
+4.0 Blocks - Formatting
 --------------------------------------------------------------*/
 
 /* Buttons */
 
-.wp-block-button .wp-block-button__link:hover,
-.wp-block-button .wp-block-button__link:focus {
+.wp-block-button__link:hover,
+.wp-block-button__link:focus {
 	background-color: #aaa;
 }
+
+/*--------------------------------------------------------------
+5.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/* Latest Comments */
+
+.wp-block-latest-comments__comment-meta {
+	font-family: inherit;
+}

+ 143 - 67
radcliffe-2/assets/css/editor-style-vintage.css

@@ -1,20 +1,72 @@
-/*!
-Editor Styles for Radcliffe 2: Vintage Style Pack
+/*
+Theme Name: Radcliffe 2 - Vintage 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 - Layout Elements
+6.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/*--------------------------------------------------------------
+1.0 General Typography
 --------------------------------------------------------------*/
 
 /* Temporary method to include Google Fonts */
+
 @import url( "https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400italic,700" );
 
-/* Widths */
-.wp-block-cover-image.alignleft,
-.wp-block-cover-image.alignright {
-	left: auto;
-	margin-left: 0;
-	margin-right: 0;
+.edit-post-visual-editor .editor-block-list__block,
+.editor-default-block-appender input[type="text"].editor-default-block-appender__content {
+	font-family: 'Libre Baskerville', 'Helvetica Neue', Helvetica, arial, sans-serif;
 }
 
-.edit-post-visual-editor figure {
-	margin: auto;
+.edit-post-visual-editor .editor-block-list__block,
+.edit-post-visual-editor .editor-block-list__block p,
+.editor-default-block-appender input[type="text"].editor-default-block-appender__content {
+	font-size: 18px;
+	line-height: 1.8;
+}
+
+/* Post title */
+
+.editor-post-title__block .editor-post-title__input {
+	font-family: 'Libre Baskerville', 'Helvetica Neue', Helvetica, arial, sans-serif;
+	font-weight: 400;
+}
+
+/* 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: 'Libre Baskerville', 'Helvetica Neue', Helvetica, arial, sans-serif;
+	font-weight: 400;
+}
+
+/*--------------------------------------------------------------
+2.0 General Block Settings
+--------------------------------------------------------------*/
+
+/* Editor Layout */
+
+.edit-post-layout {
+	background-color: #eae8dc;
 }
 
 @media screen and (min-width: 600px) {
@@ -39,8 +91,7 @@ Editor Styles for Radcliffe 2: Vintage Style Pack
 		width: 740px;
 	}
 
-	.editor-block-list__layout .editor-block-list__block[data-align="full"],
-	.editor-block-list__layout .editor-block-list__block[data-type="core/cover-image"] {
+	.editor-block-list__layout .editor-block-list__block[data-align="full"] {
 		margin-left: calc(30% - 30vw);
 		margin-right: calc(30% - 30vw);
 		width: auto;
@@ -58,20 +109,16 @@ Editor Styles for Radcliffe 2: Vintage Style Pack
 	}
 }
 
-/* Editor Layout */
-.edit-post-layout {
-	background-color: #eae8dc;
-}
-
 .editor-writing-flow {
 	border: 4px double #c7c4b4;
 	background-color: rgba(255,255,255,0.3);
 	padding-bottom: 4em;
 }
 
-.editor-block-list__layout .editor-block-list__block[data-align="full"],
-.editor-block-list__layout .editor-block-list__block[data-align="wide"],
-.wp-block-cover-image {
+/* Alignments */
+
+.editor-block-list__layout .editor-block-list__block[data-align="full"]:not([data-type="core/cover"]),
+.editor-block-list__layout .editor-block-list__block[data-align="wide"]:not([data-type="core/cover"]) {
 	background-color: rgba(255,255,255,0.7);
 	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0.8+0,1+20,1+80,0.8+100 */
 	background: -moz-linear-gradient(top, rgba(255,255,255,0.6) 0%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 85%, rgba(255,255,255,0.6) 100%); /* FF3.6-15 */
@@ -88,69 +135,86 @@ Editor Styles for Radcliffe 2: Vintage Style Pack
 	outline: none;
 }
 
+/* Figure styles */
+
+.edit-post-visual-editor figure {
+	margin: auto;
+}
+
+/* Link styles */
+
+.edit-post-visual-editor a,
+.editor-block-list__block a,
+.wp-block-freeform.block-library-rich-text__tinymce a {
+	color: #2b6e9d;
+}
+
+/* Blockquote styles */
+
+.wp-block-freeform.block-library-rich-text__tinymce blockquote::before,
+.wp-block-freeform.block-library-rich-text__tinymce blockquote::after {
+	background-color: #c5c3bf;
+}
+
 /*--------------------------------------------------------------
-# Typography
+3.0 Blocks - Common
 --------------------------------------------------------------*/
 
-.edit-post-visual-editor p,
-.edit-post-visual-editor li {
-	font-size: 18px;
+/* Quote */
+
+.wp-block-quote::before,
+.wp-block-quote::after {
+	background-color: #c5c3bf;
 }
 
-.edit-post-visual-editor,
-.edit-post-visual-editor p,
-.edit-post-visual-editor button,
-.edit-post-visual-editor input,
-.edit-post-visual-editor select,
-.edit-post-visual-editor optgroup,
-.edit-post-visual-editor textarea {
-	color: #222;
-	font-family: 'Libre Baskerville', 'Helvetica Neue', Helvetica, arial, sans-serif;
+/* File */
+
+.wp-block-file__textlink {
+	color: #2b6e9d;
 }
 
-h1.mce-content-body,
-h2.mce-content-body,
-h3.mce-content-body,
-h4.mce-content-body,
-h5.mce-content-body,
-h6.mce-content-body,
-.edit-post-visual-editor textarea.editor-post-title__input,
-.mce-content-body h1,
-.mce-content-body h2,
-.mce-content-body h3,
-.mce-content-body h4,
-.mce-content-body h5,
-.mce-content-body h6,
-#poststuff h1,
-#poststuff h2,
-#poststuff h3,
-#poststuff h4,
-#poststuff h5,
-#poststuff h6 {
-	font-family: 'Libre Baskerville', 'Helvetica Neue', Helvetica, arial, sans-serif;
-	font-weight: 400;
+.wp-block-file .wp-block-file__button {
+	border-radius: 0;
+	border: 3px double #c7c4b4;
+	font-family: inherit;
 }
 
-/* Post/Page title */
-.edit-post-visual-editor textarea.editor-post-title__input {
-	font-weight: 400;
+.wp-block-file .wp-block-file__button:hover,
+.wp-block-file .wp-block-file__button:focus {
+	background-color: #2b6e9d;
+	opacity: 1.0;
+}
+
+/* Cover */
+
+.editor-block-list__block[data-align="full"] .wp-block-cover,
+.editor-block-list__block[data-align="full"] .wp-block-cover-image,
+.editor-block-list__block[data-align="wide"] .wp-block-cover,
+.editor-block-list__block[data-align="wide"] .wp-block-cover-image {
+	border: 4px double #c7c4b4;
+}
+
+.wp-block-cover-image.alignleft,
+.wp-block-cover.alignleft,
+.wp-block-cover-image.alignright,
+.wp-block-cover.alignright {
+	left: auto;
+	margin-left: 0;
+	margin-right: 0;
 }
 
 /*--------------------------------------------------------------
-# Navigation
---------------------------------------------------------------*/
-/*--------------------------------------------------------------
-## Links
+4.0 Blocks - Formatting
 --------------------------------------------------------------*/
-.mce-content-body a,
-.wp-block-freeform.core-blocks-rich-text__tinymce a,
-.wp-block-categories a,
-.wp-block-latest-posts a {
-	color: #2b6e9d;
+
+/* Pullquote */
+
+.wp-block-pullquote {
+	border-color: #c5c3bf;
 }
 
 /*--------------------------------------------------------------
-## Gutenberg Styles
+5.0 Blocks - Layout Elements
 --------------------------------------------------------------*/
 
 /* Buttons */
@@ -172,3 +236,15 @@ h6.mce-content-body,
 .wp-block-pullquote cite {
 	color: #666;
 }
+
+/*--------------------------------------------------------------
+6.0 Blocks - Widgets
+--------------------------------------------------------------*/
+
+/* Latest Comments */
+
+.wp-block-latest-comments__comment-meta {
+	font-family: inherit;
+}
+
+

+ 187 - 577
radcliffe-2/assets/css/editor-style.css

@@ -91,6 +91,7 @@ Description: Used to style Gutenberg Blocks in the editor.
 .wp-block-freeform.block-library-rich-text__tinymce h6 {
 	clear: both;
 	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
+	font-weight: 700;
 	line-height: 1.1;
 }
 
@@ -155,6 +156,21 @@ Description: Used to style Gutenberg Blocks in the editor.
 	box-sizing: inherit;
 }
 
+.mce-content-body *[class^="wp-block-"] {
+	margin-bottom: 1.5em;
+}
+
+.mce-content-body *[class^="wp-block-"].alignleft,
+.mce-content-body *[class^="wp-block-"].alignright {
+	max-width: 50%;
+}
+
+.mce-content-body .alignfull,
+.mce-content-body .alignwide,
+.mce-content-body .aligncenter {
+	clear: both;
+}
+
 /* Link styles */
 
 .edit-post-visual-editor a,
@@ -203,25 +219,11 @@ Description: Used to style Gutenberg Blocks in the editor.
 
 /* List styles */
 
-.wp-block-freeform.block-library-rich-text__tinymce ul,
-.wp-block-freeform.block-library-rich-text__tinymce ol {
-	margin: 0 0 1.6em;
-	padding: 0;
-}
-
-.wp-block-freeform.block-library-rich-text__tinymce ul {
+.wp-block-freeform.block-library-rich-text__tinymce ul ul,
+.wp-block-freeform.block-library-rich-text__tinymce ol ul {
 	list-style: disc;
 }
 
-.wp-block-freeform.block-library-rich-text__tinymce ol {
-	list-style: decimal;
-}
-
-.wp-block-freeform.block-library-rich-text__tinymce li > ul,
-.wp-block-freeform.block-library-rich-text__tinymce li > ol {
-	margin-bottom: 0;
-}
-
 /* Definition list styles */
 
 .wp-block-freeform.block-library-rich-text__tinymce dt {
@@ -267,6 +269,7 @@ Description: Used to style Gutenberg Blocks in the editor.
 
 .wp-block-freeform.block-library-rich-text__tinymce th,
 .wp-block-freeform.block-library-rich-text__tinymce td {
+	border: 0;
 	border-bottom: 1px solid #eee;
 	line-height: 120%;
 	margin: 0;
@@ -327,6 +330,45 @@ Description: Used to style Gutenberg Blocks in the editor.
 	font-size: 125%;
 }
 
+/* Blockquote */
+
+.wp-block-freeform.block-library-rich-text__tinymce blockquote {
+	border: 0;
+	font-style: italic;
+	margin: 0 1.5em;
+	padding: 0;
+	text-align: center;
+}
+
+.wp-block-freeform.block-library-rich-text__tinymce blockquote p {
+	color: #666;
+	font-size: 22px;
+}
+
+.wp-block-freeform.block-library-rich-text__tinymce blockquote cite {
+	color: #999;
+	font-size: 22px;
+	font-style: italic;
+}
+
+.wp-block-freeform.block-library-rich-text__tinymce blockquote::before,
+.wp-block-freeform.block-library-rich-text__tinymce blockquote::after {
+	background: #ddd;
+	content: "";
+	display: block;
+	height: 2px;
+	margin: 20px auto;
+	width: 80px;
+}
+
+@media (min-width: 600px) {
+	.wp-block-freeform.block-library-rich-text__tinymce blockquote::before,
+	.wp-block-freeform.block-library-rich-text__tinymce blockquote::after {
+		margin: 36px auto;
+		width: 108px;
+	}
+}
+
 /*--------------------------------------------------------------
 3.0 Blocks - Common Blocks
 --------------------------------------------------------------*/
@@ -338,6 +380,17 @@ p.has-drop-cap:not(:focus)::first-letter {
 	margin-top: 0.15em;
 }
 
+/* Image */
+
+.wp-block-image {
+	display: inline-block; /* helps with smaller, unaligned images */
+}
+
+.wp-block-image div {
+	max-height: 100% !important;
+	max-width: 100% !important;
+}
+
 /* Quote */
 
 .wp-block-quote:not(.is-large):not(.is-style-large) {
@@ -368,6 +421,32 @@ p.has-drop-cap:not(:focus)::first-letter {
 	font-style: italic;
 }
 
+.wp-block-quote::before,
+.wp-block-quote::after {
+	background: #ddd;
+	content: "";
+	display: block;
+	height: 2px;
+	margin: 20px auto;
+	width: 80px;
+}
+
+@media (min-width: 600px) {
+	.wp-block-quote::before,
+	.wp-block-quote::after {
+		margin: 36px auto;
+		width: 108px;
+	}
+}
+
+/* Audio */
+
+.wp-block-audio audio {
+	display: block;
+	min-width: 270px;
+	width: 100%;
+}
+
 /* Cover */
 
 .edit-post-visual-editor .editor-block-list__block .wp-block-cover-image .wp-block-cover-image-text,
@@ -379,10 +458,10 @@ p.has-drop-cap:not(:focus)::first-letter {
 	font-size: 2em;
 }
 
-.editor-block-list__block [data-align="wide"] .wp-block-cover-image,
-.editor-block-list__block [data-align="wide"] .wp-block-cover,
-.editor-block-list__block [data-align="full"] .wp-block-cover-image,
-.editor-block-list__block [data-align="full"] .wp-block-cover {
+.editor-block-list__block[data-align="wide"] .wp-block-cover-image,
+.editor-block-list__block[data-align="wide"] .wp-block-cover,
+.editor-block-list__block[data-align="full"] .wp-block-cover-image,
+.editor-block-list__block[data-align="full"] .wp-block-cover {
 	height: 75vh;
 	min-height: 400px;
 }
@@ -414,24 +493,33 @@ p.has-drop-cap:not(:focus)::first-letter {
 
 /* Verse */
 
+.wp-block-verse {
+	background-color: transparent;
+	font-family: inherit;
+	font-size: 22px;
+	font-style: italic;
+}
+
+.wp-block-verse pre {
+	padding: 0;
+}
+
 /* Code */
 
-.wp-block-code .editor-plain-text {
-	font-family: "Courier 10 Pitch", Courier, monospace;
-	font-size: 16px;
-	line-height: 1.6;
-	margin-bottom: 1.6em;
-	max-width: 100%;
-	overflow: auto;
+.wp-block-code {
+	background: #eee;
+	border: 0;
+	border-radius: 0;
 	padding: 1.6em;
 	word-wrap: nowrap;
 }
 
 .wp-block-code .editor-plain-text {
-	margin-bottom: 0;
+	background: transparent;
+	font-family: "Courier 10 Pitch", Courier, monospace;
+	font-size: 16px;
 }
 
-
 /* Preformatted */
 
 .wp-block-preformatted pre {
@@ -445,9 +533,9 @@ p.has-drop-cap:not(:focus)::first-letter {
 /* Pullquote */
 
 .wp-block-pullquote {
-	border: 0;
+	border-bottom: 2px solid #ddd;
+	border-top: 3px solid #ddd;
 	font-style: italic;
-	padding: 0;
 }
 
 .edit-post-visual-editor .wp-block-pullquote p {
@@ -463,6 +551,11 @@ p.has-drop-cap:not(:focus)::first-letter {
 	text-transform: capitalize;
 }
 
+.editor-block-list__block[data-align="right"] .wp-block-pullquote,
+.editor-block-list__block[data-align="left"] .wp-block-pullquote {
+	max-width: 300px;
+}
+
 /* Table */
 
 .wp-block-table {
@@ -480,6 +573,7 @@ p.has-drop-cap:not(:focus)::first-letter {
 }
 
 .wp-block-table tbody {
+	border: 0;
 	border-bottom: 1px solid #eee;
 	border-top: 1px solid #eee;
 }
@@ -492,6 +586,7 @@ p.has-drop-cap:not(:focus)::first-letter {
 
 .wp-block-table th,
 .wp-block-table td {
+	border: 0;
 	border-bottom: 1px solid #eee;
 	line-height: 120%;
 	margin: 0;
@@ -507,6 +602,10 @@ p.has-drop-cap:not(:focus)::first-letter {
 	background: #f9f9f9;
 }
 
+.wp-block-table__cell-content {
+	padding: 0;
+}
+
 .rtl .wp-block-table th {
 	text-align: right;
 }
@@ -517,356 +616,38 @@ p.has-drop-cap:not(:focus)::first-letter {
 
 /* Buttons */
 
-/* Separator */
-
-/*--------------------------------------------------------------
-6.0 Blocks - Widgets
---------------------------------------------------------------*/
-
-
-/*--------------------------------------------------------------
-# Elements
---------------------------------------------------------------*/
-
-
-
-.editor-block-list__block[data-align="right"] .wp-block-pullquote,
-.editor-block-list__block[data-align="left"] .wp-block-pullquote {
-	max-width: 300px;
-}
-
-
-/*--------------------------------------------------------------
-# Forms
---------------------------------------------------------------*/
-.mce-content-body button,
-.mce-content-body input[type="button"],
-.mce-content-body input[type="reset"],
-.mce-content-body input[type="submit"] {
+.wp-block-button .wp-block-button__link {
 	border: 0;
 	border-radius: 3px;
-	background-color: #FC814A;
-	color: #fff;
-	font-weight: bold;
-	line-height: 1;
+	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
+	font-size: 14px;
+	line-height: 1.25;
 	padding: .6em 1em;
-}
-
-.mce-content-body button:hover,
-.mce-content-body input[type="button"]:hover,
-.mce-content-body input[type="reset"]:hover,
-.mce-content-body input[type="submit"]:hover {
-	background-color: #c1582a;
-}
-
-.mce-content-body button:active,
-.mce-content-body button:focus,
-.mce-content-body input[type="button"]:active,
-.mce-content-body input[type="button"]:focus,
-.mce-content-body input[type="reset"]:active,
-.mce-content-body input[type="reset"]:focus,
-.mce-content-body input[type="submit"]:active,
-.mce-content-body input[type="submit"]:focus {
-	border-color: #aaa #bbb #bbb;
-}
-
-.mce-content-body input[type="text"],
-.mce-content-body input[type="email"],
-.mce-content-body input[type="url"],
-.mce-content-body input[type="password"],
-.mce-content-body input[type="search"],
-.mce-content-body input[type="number"],
-.mce-content-body input[type="tel"],
-.mce-content-body input[type="range"],
-.mce-content-body input[type="date"],
-.mce-content-body input[type="month"],
-.mce-content-body input[type="week"],
-.mce-content-body input[type="time"],
-.mce-content-body input[type="datetime"],
-.mce-content-body input[type="datetime-local"],
-.mce-content-body input[type="color"],
-.mce-content-body textarea {
-	color: #666;
-	border: 1px solid #ccc;
-	border-radius: 3px;
-	padding: 3px;
-}
-
-.mce-content-body input[type="text"]:focus,
-.mce-content-body input[type="email"]:focus,
-.mce-content-body input[type="url"]:focus,
-.mce-content-body input[type="password"]:focus,
-.mce-content-body input[type="search"]:focus,
-.mce-content-body input[type="number"]:focus,
-.mce-content-body input[type="tel"]:focus,
-.mce-content-body input[type="range"]:focus,
-.mce-content-body input[type="date"]:focus,
-.mce-content-body input[type="month"]:focus,
-.mce-content-body input[type="week"]:focus,
-.mce-content-body input[type="time"]:focus,
-.mce-content-body input[type="datetime"]:focus,
-.mce-content-body input[type="datetime-local"]:focus,
-.mce-content-body input[type="color"]:focus,
-.mce-content-body textarea:focus {
-	color: #111;
-}
-
-.mce-content-body select {
-	border: 1px solid #ccc;
-}
-
-.mce-content-body textarea {
-	width: 100%;
-}
-
-/*--------------------------------------------------------------
-# Navigation
---------------------------------------------------------------*/
-/*--------------------------------------------------------------
-## Links
---------------------------------------------------------------*/
-.mce-content-body a,
-.wp-block-freeform.core-blocks-rich-text__tinymce a,
-.wp-block-categories a,
-.wp-block-latest-posts a {
-	color: #ca2017;
-	text-decoration: none;
-}
-
-.mce-content-body a:hover,
-.mce-content-body a:focus,
-.mce-content-body a:active,
-.wp-block-freeform.core-blocks-rich-text__tinymce a:hover,
-.wp-block-freeform.core-blocks-rich-text__tinymce a:focus,
-.wp-block-freeform.core-blocks-rich-text__tinymce a:active,
-.wp-block-categories a:hover,
-.wp-block-categories a:focus,
-.wp-block-categories a:active,
-.wp-block-latest-posts a:hover,
-.wp-block-latest-posts a:focus,
-.wp-block-latest-posts a:active {
-	color: #e43a31;
-	text-decoration: underline;
-}
-
-.mce-content-body a:focus,
-.wp-block-freeform.core-blocks-rich-text__tinymce a:focus {
-	outline: thin dotted;
-	text-decoration: none;
-}
-
-.mce-content-body a:hover,
-.mce-content-body a:active,
-.wp-block-freeform.core-blocks-rich-text__tinymce a:hover,
-.wp-block-freeform.core-blocks-rich-text__tinymce a:active {
-	outline: 0;
-}
-
-/*--------------------------------------------------------------
-# Alignments
---------------------------------------------------------------*/
-.mce-content-body .alignleft {
-	display: inline;
-	float: left;
-	margin-right: 1.6em;
-}
-
-.editor-block-list__layout .editor-block-list__block[data-align="left"] .editor-block-list__block-edit {
-	margin-right: 1.0em;
-}
-
-.mce-content-body .alignright {
-	display: inline;
-	float: right;
-	margin-left: 1.6em;
-}
-
-.editor-block-list__layout .editor-block-list__block[data-align="right"] .editor-block-list__block-edit {
-	margin-left: 1.0em;
-}
-
-.mce-content-body .aligncenter {
-	clear: both;
-	margin-left: auto;
-	margin-right: auto;
-}
-
-.mce-content-body .aligncenter:not(.wp-block-gallery) {
-	display: block;
-}
-
-/* Make sure embeds and iframes fit their containers. */
-.mce-content-body embed,
-.mce-content-body iframe,
-.mce-content-body object {
-	max-width: 100%;
-}
-
-/*--------------------------------------------------------------
-## Captions
---------------------------------------------------------------*/
-.mce-content-body .wp-caption,
-.mce-content-body .gallery-caption {
-	font-size: 0.8em;
-	margin-bottom: 1.6em;
-	max-width: 100%;
-}
-
-.mce-content-body .wp-caption img[class*="wp-image-"] {
-	display: block;
-	margin-left: auto;
-	margin-right: auto;
-}
-
-.mce-content-body .wp-caption .wp-caption-text {
-	margin: 0.8075em 0;
-}
-
-.mce-content-body .wp-caption-text {
-	opacity: 0.8;
-	text-align: center;
-}
-
-/*--------------------------------------------------------------
-## Galleries
---------------------------------------------------------------*/
-.mce-content-body .gallery {
-	margin: 0 -2% 1.6em;
-}
-
-.mce-content-body .gallery-item {
-	display: inline-block;
-	padding: 0 1% 0;
-	text-align: center;
-	vertical-align: top;
-	width: 100%;
-}
-
-.mce-content-body .gallery-columns-2 .gallery-item {
-	max-width: 50%;
-}
-
-.mce-content-body .gallery-columns-3 .gallery-item {
-	max-width: 33.33%;
-}
-
-.mce-content-body .gallery-columns-4 .gallery-item {
-	max-width: 25%;
-}
-
-.mce-content-body .gallery-columns-5 .gallery-item {
-	max-width: 20%;
-}
-
-.mce-content-body .gallery-columns-6 .gallery-item {
-	max-width: 16.66%;
-}
-
-.mce-content-body .gallery-columns-7 .gallery-item {
-	max-width: 14.28%;
-}
-
-.mce-content-body .gallery-columns-8 .gallery-item {
-	max-width: 12.5%;
-}
-
-.mce-content-body .gallery-columns-9 .gallery-item {
-	max-width: 11.11%;
-}
-
-.mce-content-body .gallery-caption {
-	display: block;
-}
-
-/*--------------------------------------------------------------
-## Gutenberg Styles
---------------------------------------------------------------*/
-
-.mce-content-body *[class^="wp-block-"] {
-	margin-bottom: 1.5em;
-}
-
-.mce-content-body *[class^="wp-block-"].alignleft,
-.mce-content-body *[class^="wp-block-"].alignright {
-	max-width: 50%;
-}
-
-.mce-content-body .alignfull,
-.mce-content-body .alignwide,
-.mce-content-body .aligncenter {
-	clear: both;
-}
-
-/* Images */
-.wp-block-image {
-	display: inline-block; /* helps with smaller, unaligned images */
-}
-
-/* Override inline width on un-aligned images */
-.wp-block-image div {
-	max-height: 100% !important;
-	max-width: 100% !important;
-}
-
-/* Audio */
-
-.wp-block-audio audio {
-	display: block;
-	min-width: 270px;
-	width: 100%;
-}
-
-/* Blockquotes */
-
-.wp-block-freeform.block-library-rich-text__tinymce blockquote {
-	border: 0;
-	margin: 0 1.5em;
-	padding: 0;
 	text-align: center;
 }
 
-.wp-block-freeform.block-library-rich-text__tinymce blockquote p {
-	color: #666;
-	font-size: 22px;
-	font-style: italic;
+.wp-block-button__link {
+	background-color: #222;
 }
 
-.wp-block-freeform.block-library-rich-text__tinymce blockquote cite {
-	color: #999;
-	font-size: 22px;
+.wp-block-button__link:hover,
+.wp-block-button__link:focus {
+	background-color: #ca2017;
 }
 
-.wp-block-freeform.block-library-rich-text__tinymce blockquote::before,
-.wp-block-freeform.block-library-rich-text__tinymce blockquote::after {
-	background: #ddd;
-	content: "";
+.wp-block-button .wp-block-button__link[data-align="wide"],
+.wp-block-button .wp-block-button__link[data-align="full"],
+.wp-block-button.alignwide,
+.wp-block-button.alignfull {
 	display: block;
-	height: 2px;
-	margin: 20px auto;
-	width: 80px;
-}
-
-@media (min-width: 600px) {
-	.wp-block-freeform.block-library-rich-text__tinymce blockquote::before,
-	.wp-block-freeform.block-library-rich-text__tinymce blockquote::after {
-		margin: 36px auto;
-		width: 108px;
-	}
 }
 
-
-/* Tables */
-
-/* Verse */
-.wp-block-verse {
-	background-color: transparent;
-	font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Times, "Times New Roman", serif;
-	font-size: 22px;
-	font-style: italic;
-	padding: 0;
+.wp-block-button .editor-rich-text__tinymce.mce-content-body {
+	line-height: 1.25;
 }
 
 /* Separator */
+
 .wp-block-separator {
 	background: #ccc;
 	border: none;
@@ -875,58 +656,49 @@ p.has-drop-cap:not(:focus)::first-letter {
 	margin: 0 auto;
 }
 
-/* Buttons */
+/*--------------------------------------------------------------
+6.0 Blocks - Widgets
+--------------------------------------------------------------*/
 
-.wp-block-button {
-	display: block;
-}
+/* Categories, Latest Posts & Archives */
 
-.wp-block-button .wp-block-button__link {
-	background-color: #222;
-	border: 0;
-	border-radius: 3px;
-	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
-	font-size: 14px;
-	line-height: 1.25;
-	padding: .6em 1em;
-	text-align: center;
+.block-editor ul.wp-block-archives,
+.block-editor ul.wp-block-latest-comments,
+.block-editor ul.wp-block-latest-posts,
+.block-editor ul.wp-block-categories__list {
+	list-style: none;
+	padding: 0;
 }
 
-.wp-block-button .wp-block-button__link:hover,
-.wp-block-button .wp-block-button__link:focus {
-	background-color: #ca2017;
+.wp-block-archives li,
+.wp-block-categories__list li {
+	padding: 0.25em 0;
 }
 
-.wp-block-button .wp-block-button__link[data-align="wide"],
-.wp-block-button .wp-block-button__link[data-align="full"],
-.wp-block-button.alignwide,
-.wp-block-button.alignfull {
-	display: block;
+.wp-block-archives li:not(:last-child),
+.wp-block-categories__list li:not(:last-child) {
+	border-bottom: 1px solid rgba(0,0,0,0.075);
 }
 
-.wp-block-button .editor-rich-text__tinymce.mce-content-body {
-	line-height: 1.25;
+.wp-block-categories__list ul ul {
+	padding-left: 2em;
 }
 
-
-@media ( min-width: 600px ) {
-	.editor-block-list__layout .editor-block-list__block[data-align="full"] {
-		max-width: calc( 100% + 100px );
-	}
+.wp-block-categories__list ul ul li:last-child {
+	padding-bottom: 0;
 }
 
 /* Latest Posts */
+
 .wp-block-latest-posts__post-date {
 	color: inherit;
 	margin-bottom: 0;
 	opacity: 0.8;
 }
 
-.editor-block-list__block[data-type="core/latest-posts"] .wp-block-latest-posts,
+.wp-block-latest-posts,
 .wp-block-latest-posts li {
 	list-style: none;
-	margin: 0;
-	padding: 0;
 }
 
 .wp-block-latest-posts li {
@@ -934,200 +706,38 @@ p.has-drop-cap:not(:focus)::first-letter {
 }
 
 .wp-block-latest-posts li:not(:last-child) {
-	border-bottom: 1px solid rgba(0,0,0,0.075);
+	border-bottom: 1px solid rgba(0,0,0,0.2);
 }
 
 .wp-block-latest-posts.is-grid li {
 	border: 0;
-	padding: 0.25em 0;
 }
-/* Categories */
 
-.editor-block-list__block[data-type="core/categories"] .wp-block-categories ul,
-.editor-block-list__block[data-type="core/categories"] .wp-block-categories li {
-	list-style: none;
-	margin: 0;
-	padding: 0;
-}
+/* Latest Comments */
 
-.editor-block-list__block[data-type="core/categories"] .wp-block-categories__list li,
-.editor-block-list__block[data-type="core/categories"] .wp-block-categories li {
-	padding: 0.25em 0;
+.wp-block-latest-comments.not(.alignwide),
+.wp-block-latest-comments.not(.alignfull) {
+	margin-left: 0;
+	margin-right: 0;
 }
 
-.editor-block-list__block[data-type="core/categories"] .wp-block-categories__list li:not(:last-child),
-.editor-block-list__block[data-type="core/categories"] .wp-block-categories li:not(:last-child) {
-	border-bottom: 1px solid rgba(0,0,0,0.075);
+.wp-block-latest-comments__comment,
+.wp-block-latest-comments__comment-date {
+	font-size: inherit;
 }
 
-.editor-block-list__block[data-type="core/categories"] .wp-block-categories__list ul ul li:last-child,
-.editor-block-list__block[data-type="core/categories"] .wp-block-categories ul ul li:last-child {
-	padding-bottom: 0;
-}
-
-.editor-block-list__block[data-type="core/categories"] .wp-block-categories__list ul ul,
-.editor-block-list__block[data-type="core/categories"] .wp-block-categories ul ul {
-	padding-left: 2em;
-}
-
-/* Colours - defualt color palette */
-
-.has-white-color,
-.edit-post-visual-editor .has-colorful-white-color,
-.edit-post-visual-editor .has-modern-white-color,
-.wp-block-button .wp-block-button__link.has-white-color,
-.wp-block-button .wp-block-button__link.has-colorful-white-color,
-.wp-block-button .wp-block-button__link.has-modern-white-color {
-	color: #fff;
-}
-
-.has-dark-grey-color,
-.edit-post-visual-editor .has-colorful-dark-grey-color,
-.edit-post-visual-editor .has-vintage-dark-grey-color,
-.edit-post-visual-editor .has-modern-dark-grey-color,
-.wp-block-button .wp-block-button__link.has-dark-grey-color,
-.wp-block-button .wp-block-button__link.has-colorful-dark-grey-color,
-.wp-block-button .wp-block-button__link.has-vintage-dark-grey-color,
-.wp-block-button .wp-block-button__link.has-modern-dark-grey-color {
-	color: #222;
-}
-
-.has-light-grey-color,
-.edit-post-visual-editor .has-vintage-light-grey-color,
-.wp-block-button .wp-block-button__link.has-vintage-light-grey-color {
-	color: #666;
-}
-
-.has-red-color,
-.wp-block-button .wp-block-button__link.has-red-color {
-	color: #ca2017;
-}
-
-.has-white-background-color,
-.has-colorful-white-background-color,
-.has-modern-white-background-color,
-.wp-block-button .wp-block-button__link.has-white-background-color,
-.wp-block-button .wp-block-button__link.has-colorful-white-background-color,
-.wp-block-button .wp-block-button__link.has-modern-white-background-color {
-	background-color: #fff
-}
-
-.has-dark-grey-background-color,
-.has-colorful-dark-grey-background-color,
-.has-vinatge-dark-grey-background-color,
-.has-modern-dark-grey-background-color,
-.wp-block-button .wp-block-button__link.has-dark-grey-background-color,
-.wp-block-button .wp-block-button__link.has-colorful-dark-grey-background-color,
-.wp-block-button .wp-block-button__link.has-vintage-dark-grey-background-color,
-.wp-block-button .wp-block-button__link.has-modern-dark-grey-background-color {
-	background-color: #222;
-}
-
-.has-light-grey-background-color,
-.has-vintage-light-grey-background-color,
-.wp-block-button .wp-block-button__link.has-light-grey-background-color,
-.wp-block-button .wp-block-button__link.has-vintge-light-grey-background-color {
-	background-color: #666;
-}
-
-.has-red-background-color,
-.wp-block-button .wp-block-button__link.has-red-background-color {
-	background-color: #ca2017;
-}
-
-/* Colours - Colorful color palette */
-
-.edit-post-visual-editor .has-colorful-light-grey-color,
-.wp-block-button .wp-block-button__link.has-colorful-light-grey-color {
-	color: #e5e5e5;
-}
-
-.has-colorful-light-grey-background-color,
-.wp-block-button .wp-block-button__link.has-colorful-light-grey-background-color {
-	background-color: #e5e5e5;
-}
-
-.edit-post-visual-editor .has-colorful-orange-color,
-.wp-block-button .wp-block-button__link.has-colorful-orange-color {
-	color: #d97059;
-}
-
-.has-colorful-orange-background-color,
-.wp-block-button .wp-block-button__link.has-coloful-orange-background-color {
-	background-color: #d97059;
-}
-
-.edit-post-visual-editor .has-colorful-green-color,
-.wp-block-button .wp-block-button__link.has-colorful-green-color {
-	color: #71db9d;
-}
-
-.has-colorful-green-background-color,
-.wp-block-button .wp-block-button__link.has-colorful-green-background-color {
-	background-color: #71db9d;
-}
-
-.edit-post-visual-editor .has-colorful-blue-color,
-.wp-block-button .wp-block-button__link.has-colorful-blue-color {
-	color: #4ba3c3;
-}
-
-.has-colorful-blue-background-color,
-.wp-block-button .wp-block-button__link.has-colorful-blue-background-color {
-	background-color: #4ba3c3;
-}
-
-/* Colours - Vintage color palette */
-
-.edit-post-visual-editor .has-vintage-off-white-color,
-.wp-block-button .wp-block-button__link.has-vintage-off-white-color {
-	color: #eae8dc;
-}
-
-.has-vintage-off-white-background-color,
-.wp-block-button .wp-block-button__link.has-vintage-off-white-background-color {
-	background-color: #eae8dc;
-}
-
-.edit-post-visual-editor .has-vintage-light-brown-color,
-.wp-block-button .wp-block-button__link.has-vintage-light-brown-color {
-	color: #c7c4b4;
-}
-
-.has-vintage-light-brown-background-color,
-.wp-block-button .wp-block-button__link.has-vintage-light-brown-background-color {
-	background-color: #c7c4b4;
-}
-
-.edit-post-visual-editor .has-vintage-blue-color,
-.wp-block-button .wp-block-button__link.has-vintage-blue-color {
-	color: #2b6e9d;
-}
-
-.has-vintage-blue-background-color,
-.wp-block-button .wp-block-button__link.has-vintage-blue-background-color {
-	background-color: #2b6e9d;
-}
-
-/* Colours - Modern color palette */
-
-.edit-post-visual-editor .has-modern-light-grey-color,
-.wp-block-button .wp-block-button__link.has-modern-light-grey-color {
-	color: #f1f1f1;
-}
-
-.has-modern-light-grey-background-color,
-.wp-block-button .wp-block-button__link.has-modern-light-grey-background-color {
-	background-color: #f1f1f1;
+.wp-block-latest-comments__comment-meta {
+	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
+	font-size: 80%;
+	font-weight: bold;
+	margin-bottom: 0;
 }
 
-.edit-post-visual-editor .has-modern-medium-grey-color,
-.wp-block-button .wp-block-button__link.has-modern-medium-grey-color {
-	color: #aaa;
+.wp-block-latest-comments__comment-excerpt p {
+	font-size: 90%;
 }
 
-.has-modern-medium-grey-background-color,
-.wp-block-button .wp-block-button__link.has-modern-medium-grey-background-color {
-	background-color: #aaa;
+.wp-block-latest-comments__comment-date {
+	color: #707070;
+	font-size: 80%;
 }
-