|
@@ -0,0 +1,231 @@
|
|
|
+/*
|
|
|
+Theme Name: Lynx
|
|
|
+Theme URI:
|
|
|
+Author: Automattic
|
|
|
+Author URI: https://automattic.com/
|
|
|
+Description: A theme for anyone who wants to create a collection of links to their online profiles. It comes with a selection of patterns ready for customization.
|
|
|
+Requires at least: 5.7
|
|
|
+Tested up to: 5.9
|
|
|
+Requires PHP: 5.7
|
|
|
+Version: 0.0.11
|
|
|
+License: GNU General Public License v2 or later
|
|
|
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
+Text Domain: lynx
|
|
|
+Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks, auto-loading-homepage
|
|
|
+
|
|
|
+Lynx WordPress Theme, (C) 2022 Automattic, Inc.
|
|
|
+Lynx 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.
|
|
|
+
|
|
|
+*/
|
|
|
+
|
|
|
+/*
|
|
|
+ * Font smoothing.
|
|
|
+ * This is a niche setting that will not be available via Global Styles.
|
|
|
+ * https://github.com/WordPress/gutenberg/issues/35934
|
|
|
+ */
|
|
|
+
|
|
|
+body {
|
|
|
+ -moz-osx-font-smoothing: grayscale;
|
|
|
+ -webkit-font-smoothing: antialiased;
|
|
|
+}
|
|
|
+
|
|
|
+/*
|
|
|
+ * Text and navigation link styles.
|
|
|
+ * Necessary until the following issue is resolved in Gutenberg:
|
|
|
+ * https://github.com/WordPress/gutenberg/issues/27075
|
|
|
+ */
|
|
|
+
|
|
|
+a {
|
|
|
+ text-decoration-thickness: 1px;
|
|
|
+ text-underline-offset: 0.25ch;
|
|
|
+ text-decoration-style: underline;
|
|
|
+}
|
|
|
+
|
|
|
+a:hover,
|
|
|
+a:focus {
|
|
|
+ text-decoration-style: solid;
|
|
|
+}
|
|
|
+
|
|
|
+a:active {
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-navigation .wp-block-navigation-item a:hover,
|
|
|
+.wp-block-navigation .wp-block-navigation-item a:focus {
|
|
|
+ text-decoration: underline;
|
|
|
+ text-decoration-style: solid;
|
|
|
+}
|
|
|
+
|
|
|
+/*
|
|
|
+ * Search and File Block button styles.
|
|
|
+ * Necessary until the following issues are resolved in Gutenberg:
|
|
|
+ * https://github.com/WordPress/gutenberg/issues/36444
|
|
|
+ * https://github.com/WordPress/gutenberg/issues/27760
|
|
|
+ */
|
|
|
+
|
|
|
+.wp-block-search__button,
|
|
|
+.wp-block-file .wp-block-file__button {
|
|
|
+ background-color: var(--wp--preset--color--foreground);
|
|
|
+ border-radius: 0;
|
|
|
+ border: none;
|
|
|
+ color: var(--wp--preset--color--background);
|
|
|
+ font-size: var(--wp--preset--font-size--medium);
|
|
|
+ padding: calc(.667em + 2px) calc(1.333em + 2px);
|
|
|
+}
|
|
|
+
|
|
|
+/*
|
|
|
+ * Button hover styles.
|
|
|
+ * Necessary until the following issue is resolved in Gutenberg:
|
|
|
+ * https://github.com/WordPress/gutenberg/issues/27075
|
|
|
+ */
|
|
|
+
|
|
|
+.wp-block-search__button:hover,
|
|
|
+.wp-block-file .wp-block-file__button:hover,
|
|
|
+.wp-block-button__link:hover {
|
|
|
+ opacity: 0.90;
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-button__link:hover, .wp-block-button__link:focus,
|
|
|
+.wp-block-button__link:active, .wp-block-button__link:visited {
|
|
|
+ color: initial;
|
|
|
+}
|
|
|
+
|
|
|
+/*
|
|
|
+ * Alignment styles.
|
|
|
+ * These rules are temporary, and should not be relied on or
|
|
|
+ * modified too heavily by themes or plugins that build on
|
|
|
+ * Lettre. These are meant to be a precursor to
|
|
|
+ * a global solution provided by the Block Editor.
|
|
|
+ *
|
|
|
+ * Relevant issues:
|
|
|
+ * https://github.com/WordPress/gutenberg/issues/35607
|
|
|
+ * https://github.com/WordPress/gutenberg/issues/35884
|
|
|
+ */
|
|
|
+
|
|
|
+.wp-site-blocks,
|
|
|
+body > .is-root-container,
|
|
|
+.edit-post-visual-editor__post-title-wrapper,
|
|
|
+.wp-block-group.alignfull,
|
|
|
+.wp-block-group.has-background,
|
|
|
+.wp-block-columns.alignfull.has-background,
|
|
|
+.wp-block-cover.alignfull,
|
|
|
+.is-root-container .wp-block[data-align='full'] > .wp-block-group,
|
|
|
+.is-root-container .wp-block[data-align='full'] > .wp-block-columns.has-background,
|
|
|
+.is-root-container .wp-block[data-align='full'] > .wp-block-cover {
|
|
|
+ padding-left: var(--wp--custom--spacing--outer);
|
|
|
+ padding-right: var(--wp--custom--spacing--outer);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-site-blocks .alignfull,
|
|
|
+.wp-site-blocks > .wp-block-group.has-background,
|
|
|
+.wp-site-blocks > .wp-block-cover,
|
|
|
+.wp-site-blocks > .wp-block-template-part > .wp-block-group.has-background,
|
|
|
+.wp-site-blocks > .wp-block-template-part > .wp-block-cover,
|
|
|
+body > .is-root-container > .wp-block-cover,
|
|
|
+body > .is-root-container > .wp-block-template-part > .wp-block-group.has-background,
|
|
|
+body > .is-root-container > .wp-block-template-part > .wp-block-cover,
|
|
|
+.is-root-container .wp-block[data-align="full"] {
|
|
|
+ margin-left: calc(-1 * var(--wp--custom--spacing--outer)) !important;
|
|
|
+ margin-right: calc(-1 * var(--wp--custom--spacing--outer)) !important;
|
|
|
+ max-width: unset;
|
|
|
+ width: unset;
|
|
|
+}
|
|
|
+
|
|
|
+/* Blocks inside columns don't have negative margins. */
|
|
|
+.wp-site-blocks .wp-block-columns .wp-block-column .alignfull,
|
|
|
+.is-root-container .wp-block-columns .wp-block-column .wp-block[data-align="full"],
|
|
|
+/* We also want to avoid stacking negative margins. */
|
|
|
+.wp-site-blocks .alignfull:not(.wp-block-group) .alignfull,
|
|
|
+.is-root-container .wp-block[data-align="full"] > *:not(.wp-block-group) .wp-block[data-align="full"] {
|
|
|
+ margin-left: auto !important;
|
|
|
+ margin-right: auto !important;
|
|
|
+ width: inherit;
|
|
|
+}
|
|
|
+
|
|
|
+/*
|
|
|
+ * Custom theme styles.
|
|
|
+ */
|
|
|
+
|
|
|
+.wp-block-post-title a,
|
|
|
+.wp-block-post-date a,
|
|
|
+.wp-block-site-title a {
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-post-title a:hover,
|
|
|
+.wp-block-post-date a:hover,
|
|
|
+.wp-block-site-title a:hover {
|
|
|
+ text-decoration: underline;
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-site-title[style*="text-transform:uppercase"] {
|
|
|
+ letter-spacing: 0.15em;
|
|
|
+}
|
|
|
+/*
|
|
|
+ * Comment form cleanup.
|
|
|
+ */
|
|
|
+
|
|
|
+input {
|
|
|
+ font-family: inherit;
|
|
|
+}
|
|
|
+
|
|
|
+textarea,
|
|
|
+input:not([type="submit"]):not([type="button"]) {
|
|
|
+ color: var(--wp--preset--color--foreground);
|
|
|
+ background: var(--wp--preset--color--background);
|
|
|
+ border-color: var(--wp--preset--color--foreground);
|
|
|
+}
|
|
|
+
|
|
|
+textarea:focus,
|
|
|
+input:not([type="submit"]):not([type="button"]):focus {
|
|
|
+ border-color: var(--wp--preset--color--secondary);
|
|
|
+}
|
|
|
+
|
|
|
+.comment-form label {
|
|
|
+ font-size: var(--wp--preset--font-size--small);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent {
|
|
|
+ margin-top: 0.2em;
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-post-comments h3#comments {
|
|
|
+ margin-top: var(--wp--style--block-gap);
|
|
|
+}
|
|
|
+
|
|
|
+.wp-block-post-comments .navigation + .comment-respond {
|
|
|
+ margin-top: calc(3 * var(--wp--style--block-gap));
|
|
|
+}
|
|
|
+
|
|
|
+/*
|
|
|
+ * Drop cap refinements.
|
|
|
+ */
|
|
|
+
|
|
|
+.has-drop-cap:not(:focus)::first-letter {
|
|
|
+ font-size: 3.15em;
|
|
|
+ font-weight: 300;
|
|
|
+ margin: 0.2em 0.125em 0 0;
|
|
|
+}
|
|
|
+
|
|
|
+/*
|
|
|
+ * Tag cloud refinements.
|
|
|
+ */
|
|
|
+
|
|
|
+.wp-block-tag-cloud.is-style-outline a {
|
|
|
+ border-radius: 50px;
|
|
|
+ border-color: var(--wp--preset--color--primary);
|
|
|
+ color: var(--wp--preset--color--primary);
|
|
|
+
|
|
|
+ /* Core styles use !important here, so the theme needs to use it too. */
|
|
|
+ font-size: var(--wp--preset--font-size--small) !important;
|
|
|
+}
|