65 lines
2 KiB
CSS
65 lines
2 KiB
CSS
/*
|
|
Theme Name: Vetro
|
|
Theme URI: https://wordpress.com/themes/vetro
|
|
Author: Automattic
|
|
Author URI: https://automattic.com/
|
|
Description: Vetro was designed to be a portfolio theme, and is composed by wide width layouts with the impact of generous imagery and typography. Its simple pages are aligned left with fair right paddings and large content blocks to grant viewers focus on visuals and short paragraphs.
|
|
Requires at least: 5.8
|
|
Tested up to: 6.2
|
|
Requires PHP: 5.6
|
|
Version: 1.0.11
|
|
License: GNU General Public License v2 or later
|
|
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
|
Template:
|
|
Text Domain: vetro
|
|
Tags: custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, one-column, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks, style-variations
|
|
*/
|
|
|
|
/*
|
|
* 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;
|
|
}
|
|
|
|
a:hover,
|
|
a:focus {
|
|
text-decoration-style: dashed;
|
|
}
|
|
|
|
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: dashed;
|
|
}
|
|
|
|
/*
|
|
* Control the hover stylings of outline block style.
|
|
* Unnecessary once block styles are configurable via theme.json
|
|
* https://github.com/WordPress/gutenberg/issues/42794
|
|
*/
|
|
.wp-block-button.is-style-outline
|
|
> .wp-block-button__link:not(.has-background):hover {
|
|
background-color: var(--wp--preset--color--foreground);
|
|
color: var(--wp--preset--color--background);
|
|
border-color: var(--wp--preset--color--foreground);
|
|
}
|