style.css 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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.2
  9. Requires PHP: 5.6
  10. Version: 1.0.11
  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: 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
  16. */
  17. /*
  18. * Font smoothing.
  19. * This is a niche setting that will not be available via Global Styles.
  20. * https://github.com/WordPress/gutenberg/issues/35934
  21. */
  22. body {
  23. -moz-osx-font-smoothing: grayscale;
  24. -webkit-font-smoothing: antialiased;
  25. }
  26. /*
  27. * Text and navigation link styles.
  28. * Necessary until the following issue is resolved in Gutenberg:
  29. * https://github.com/WordPress/gutenberg/issues/27075
  30. */
  31. a {
  32. text-decoration-thickness: 1px;
  33. text-underline-offset: 0.25ch;
  34. }
  35. a:hover,
  36. a:focus {
  37. text-decoration-style: dashed;
  38. }
  39. a:active {
  40. text-decoration: none;
  41. }
  42. .wp-block-navigation .wp-block-navigation-item a:hover,
  43. .wp-block-navigation .wp-block-navigation-item a:focus {
  44. text-decoration: underline;
  45. text-decoration-style: dashed;
  46. }
  47. /*
  48. * Control the hover stylings of outline block style.
  49. * Unnecessary once block styles are configurable via theme.json
  50. * https://github.com/WordPress/gutenberg/issues/42794
  51. */
  52. .wp-block-button.is-style-outline
  53. > .wp-block-button__link:not(.has-background):hover {
  54. background-color: var(--wp--preset--color--foreground);
  55. color: var(--wp--preset--color--background);
  56. border-color: var(--wp--preset--color--foreground);
  57. }