style.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. Theme Name: Trellick
  3. Theme URI: https://wordpress.com/theme/trellick/
  4. Author: Automattic
  5. Author URI: https://automattic.com/
  6. Description: Trellick is a raw, brutalist blog theme that strips away the polished veneer of the samey web design to show the untamed essence of the digital realm.
  7. Requires at least: 5.8
  8. Tested up to: 6.2
  9. Requires PHP: 5.7
  10. Version: 1.0.2
  11. License: GNU General Public License v2 or later
  12. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  13. Text Domain: trellick
  14. Tags: blog, three-columns, wide-blocks, block-patterns, block-styles, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, style-variations, template-editing, theme-options, threaded-comments, translation-ready, one-column, news
  15. *//*
  16. * Control the hover stylings of outline block style.
  17. * Unnecessary once block styles are configurable via theme.json
  18. * https://github.com/WordPress/gutenberg/issues/42794
  19. */
  20. .wp-block-button.is-style-outline >.wp-block-button__link:not(.has-background):hover {
  21. background-color: var(--wp--preset--color--primary);
  22. border-color: var(--wp--preset--color--primary);
  23. color: var(--wp--preset--color--base);
  24. }
  25. /*
  26. * Link styles
  27. * https://github.com/WordPress/gutenberg/issues/42319
  28. */
  29. a {
  30. text-decoration-thickness: 0.5px !important;
  31. text-underline-offset: .1em;
  32. }
  33. /*
  34. * Avatar Block
  35. * Fix border radius setting for the avatar block
  36. * https://github.com/WordPress/gutenberg/issues/48253
  37. */
  38. .wp-block-avatar a,
  39. .wp-block-avatar img {
  40. border-radius: inherit;
  41. }
  42. /*
  43. * Pull quote Block
  44. * Reset the browser default margins for blockquote element
  45. * https://github.com/WordPress/gutenberg/issues/44129
  46. */
  47. .wp-block-pullquote blockquote {
  48. margin: 0;
  49. }