style.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. Theme Name: Vetro
  3. Theme URI: https://wordpress.com/themes/vetro
  4. Author: Automattic
  5. Author URI: https://automattic.com/
  6. 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.
  7. Requires at least: 5.8
  8. Tested up to: 6.1
  9. Requires PHP: 5.7
  10. Version: 1.0.4
  11. License: GNU General Public License v2 or later
  12. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  13. Template:
  14. Text Domain: vetro
  15. Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks
  16. *//*
  17. * Font smoothing.
  18. * This is a niche setting that will not be available via Global Styles.
  19. * https://github.com/WordPress/gutenberg/issues/35934
  20. */
  21. body {
  22. -moz-osx-font-smoothing: grayscale;
  23. -webkit-font-smoothing: antialiased;
  24. }
  25. /*
  26. * Text and navigation link styles.
  27. * Necessary until the following issue is resolved in Gutenberg:
  28. * https://github.com/WordPress/gutenberg/issues/27075
  29. */
  30. a {
  31. text-decoration-thickness: 1px;
  32. text-underline-offset: 0.25ch;
  33. }
  34. a:hover,
  35. a:focus {
  36. text-decoration-style: dashed;
  37. }
  38. a:active {
  39. text-decoration: none;
  40. }
  41. .wp-block-navigation .wp-block-navigation-item a:hover,
  42. .wp-block-navigation .wp-block-navigation-item a:focus {
  43. text-decoration: underline;
  44. text-decoration-style: dashed;
  45. }
  46. /*
  47. * Control the hover stylings of outline block style.
  48. * Unnecessary once block styles are configurable via theme.json
  49. * https://github.com/WordPress/gutenberg/issues/42794
  50. */
  51. .wp-block-button.is-style-outline
  52. > .wp-block-button__link:not(.has-background):hover {
  53. background-color: var(--wp--preset--color--foreground);
  54. color: var(--wp--preset--color--background);
  55. border-color: var(--wp--preset--color--foreground);
  56. }