themes-wordpress/blank-canvas/style.css

87 lines
3.7 KiB
CSS
Raw Normal View History

2021-01-04 20:25:09 +00:00
/*
Theme Name: Blank Canvas
Theme URI: https://github.com/Automattic/themes/blank-canvas
2021-01-04 20:25:09 +00:00
Author: Automattic
Author URI: https://automattic.com/
2021-01-29 17:02:18 +00:00
Description: Blank Canvas is a minimalist theme, designed for single-page websites. Its single post and page layouts have no header, navigation menus, or widgets by default, so the page you design in the WordPress editor is the same page youll see on the front end. The themes default styles are conservative, relying on simple sans-serif fonts and a subtle blue highlight color. Blank Canvas is ready for your customizations.
2021-01-04 20:25:09 +00:00
Requires at least: 4.9.6
Tested up to: 5.6
Requires PHP: 5.6.2
2021-02-01 10:24:14 +00:00
Version: 1.2.1
2021-01-04 20:25:09 +00:00
License: GNU General Public License v2 or later
License URI: LICENSE
Template: seedlet
Text Domain: blank-canvas
Tags: one-column, accessibility-ready, custom-colors, editor-style, featured-images, rtl-language-support, sticky-post, translation-ready
2021-01-04 20:25:09 +00:00
Blank Canvas WordPress Theme, (C) 2021 Automattic, Inc.
Blank Canvas is distributed under the terms of the GNU GPL.
2021-01-04 20:25:09 +00:00
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.
2021-01-12 16:52:30 +00:00
Blank Canvas is derived from Seedlet. 2020-2021 Automattic
Seedlet is distributed under the terms of the GNU GPL v2 or later.
2021-01-12 17:38:33 +00:00
Images from stocksnap.io
2021-01-12 16:52:30 +00:00
License: CC0
- Sarah Pflug: https://stocksnap.io/photo/hand-sign-BPQSX1BQTF
2021-01-13 17:18:07 +00:00
- Clem Onojeghuo: https://stocksnap.io/photo/beanie-scarf-M2U9VL0ZWG
2021-01-13 17:34:44 +00:00
- Brooke Cagle: https://stocksnap.io/photo/people-woman-MU7G67710S
2021-01-13 17:18:07 +00:00
- Daria Shevtsova: https://stocksnap.io/photo/girl-camera-AZED07HITL
2021-01-13 17:34:44 +00:00
- Benjamin Voros: https://stocksnap.io/photo/blue-denim-BWPRK5DEF0
2021-01-14 14:32:17 +00:00
- Artsy Crafty: https://stocksnap.io/photo/office-supplies-BDVUKQ4BBF
2021-02-01 17:17:19 +00:00
- Artsy Crafty: https://stocksnap.io/photo/colorful-pencils-NONEDF6REB
- Austin Neill: https://stocksnap.io/photo/concert-singer-F66MXRQS1K
2021-01-12 16:52:30 +00:00
Used as block pattern images.
2021-01-12 17:38:33 +00:00
Image from foodiesfeed.com
License: CC0
2021-01-13 17:18:07 +00:00
https://www.foodiesfeed.com/free-food-photo/watermelon-juice-2/
2021-01-12 17:38:33 +00:00
Used as block pattern image.
2021-02-01 17:17:19 +00:00
Hamburger Icon from Noto Emoji
License: Apache License 2.0
https://github.com/googlefonts/noto-emoji/blob/master/svg/emoji_u1f354.svg
Modified and used as a block pattern image.
2021-01-04 20:25:09 +00:00
*/
@import "variables.css";
2021-01-04 20:50:15 +00:00
/* Remove extra margin from articles on single post pages. */
2021-01-04 20:50:15 +00:00
.single .site-main > article,
.page .site-main > article {
margin-bottom: 0;
}
2021-01-20 19:10:25 +00:00
/* Remove some top padding if the first block on the page is a full-width image, cover, media & text, or group block. */
.single .entry-content.hide-post-and-page-titles > .wp-block-image.alignfull:first-child,
.page .entry-content.hide-post-and-page-titles > .wp-block-image.alignfull:first-child,
.single .entry-content.hide-post-and-page-titles > .wp-block-cover.alignfull:first-child,
.page .entry-content.hide-post-and-page-titles > .wp-block-cover.alignfull:first-child,
.single .entry-content.hide-post-and-page-titles > .wp-block-media-text.alignfull:first-child,
.page .entry-content.hide-post-and-page-titles > .wp-block-media-text.alignfull:first-child,
.single .entry-content.hide-post-and-page-titles > .wp-block-group.has-background.alignfull:first-child,
.page .entry-content.hide-post-and-page-titles > .wp-block-group.has-background.alignfull:first-child {
2021-01-08 15:48:26 +00:00
margin-top: calc(-1 * var(--global--spacing-vertical));
}
/* Center-align headers and footers. */
2021-01-04 20:50:15 +00:00
.entry-header,
2021-01-04 21:26:49 +00:00
.page-title,
.entry-footer,
2021-01-29 14:23:30 +00:00
.site-info,
.footer-menu {
2021-01-04 20:50:15 +00:00
text-align: center;
}