style.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. Theme Name: Tenaz
  3. Theme URI: https://wordpress.com/theme/tenaz/
  4. Author: Automattic
  5. Author URI: https://automattic.com/
  6. Description: Tenaz is a classic "magazine" theme with a rich, dense homepage perfect for pro-bloggers.
  7. Requires at least: 5.8
  8. Tested up to: 6.2
  9. Requires PHP: 5.7
  10. Version: 1.0.5
  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: tenaz
  15. Tags: blog, two-columns, wide-blocks, block-patterns, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, template-editing, rtl-language-support, threaded-comments, translation-ready
  16. Status: inactive
  17. */
  18. /*
  19. * Avatar Block
  20. * Fix border radius setting for the avatar block
  21. * https://github.com/WordPress/gutenberg/issues/48253
  22. */
  23. .wp-block-avatar a,
  24. .wp-block-avatar img {
  25. border-radius: inherit;
  26. }
  27. /*
  28. * Button Block
  29. * Control the hover stylings of outline block style.
  30. * Unnecessary once block styles are configurable via theme.json
  31. * https://github.com/WordPress/gutenberg/issues/42794
  32. */
  33. .wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
  34. background-color: var(--wp--preset--color--primary);
  35. color: var(--wp--preset--color--base);
  36. border-color: var(--wp--preset--color--primary);
  37. }
  38. /*
  39. * Pull quote Block
  40. * Reset the browser default margins for blockquote element
  41. * https://github.com/WordPress/gutenberg/issues/44129
  42. */
  43. .wp-block-pullquote blockquote,
  44. .wp-block-pullquote p {
  45. margin: 0;
  46. }