|
@@ -0,0 +1,62 @@
|
|
|
+/*
|
|
|
+Theme Name: Seedlet (Blocks)
|
|
|
+Theme URI: https://github.com/Automattic/themes-workspace/seedlet-blocks
|
|
|
+Author: Automattic
|
|
|
+Author URI: https://automattic.com/
|
|
|
+Description: A simple, text-driven, single-column block-based theme.
|
|
|
+Requires at least: 4.9.6
|
|
|
+Tested up to: 5.4.1
|
|
|
+Requires PHP: 7.3
|
|
|
+Version: 1.0
|
|
|
+License: GNU General Public License v2 or later
|
|
|
+License URI: LICENSE
|
|
|
+Template: seedlet
|
|
|
+Text Domain: seedlet-blocks
|
|
|
+Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready
|
|
|
+
|
|
|
+Seedlet Blocks WordPress Theme, (C) 2020 Automattic, Inc.
|
|
|
+Seedlet Blocks is distributed under the terms of the GNU GPL.
|
|
|
+
|
|
|
+This program is free software: you can redistribute it and/or modify
|
|
|
+it under the terms of the GNU General Public License as published by
|
|
|
+the Free Software Foundation, either version 2 of the License, or
|
|
|
+(at your option) any later version.
|
|
|
+
|
|
|
+This program is distributed in the hope that it will be useful,
|
|
|
+but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
+GNU General Public License for more details.
|
|
|
+*/
|
|
|
+
|
|
|
+/* Center the site title. */
|
|
|
+.site-header h1 {
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+/* Set up alignments */
|
|
|
+.wp-block-group .wp-block-group__inner-container > * {
|
|
|
+ max-width: var(--responsive--aligndefault-width);
|
|
|
+ margin-left: auto;
|
|
|
+ margin-right: auto;
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-group .wp-block-group__inner-container > .alignwide {
|
|
|
+ max-width: var(--responsive--alignwide-width);
|
|
|
+ margin-left: auto;
|
|
|
+ margin-right: auto;
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-group .wp-block-group__inner-container > .alignfull {
|
|
|
+ max-width: calc(100% + (2 * var(--global--spacing-horizontal)));
|
|
|
+ width: calc(100% + (2 * var(--global--spacing-horizontal)));
|
|
|
+ margin-left: calc(-1 * var(--global--spacing-horizontal));
|
|
|
+ margin-right: auto;
|
|
|
+}
|
|
|
+
|
|
|
+/* Make sure full-width items in entry content show up as full-width. */
|
|
|
+.wp-block-group.site-content .wp-block-group__inner-container .entry-content {
|
|
|
+ max-width: calc(100% + (2 * var(--global--spacing-horizontal)));
|
|
|
+ width: calc(100% + (2 * var(--global--spacing-horizontal)));
|
|
|
+ margin-left: calc(-1 * var(--global--spacing-horizontal));
|
|
|
+ margin-right: auto;
|
|
|
+}
|