style.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. Theme Name: OnyxPulse
  3. Theme URI: https://themeshaper.com/onyxpulse/
  4. Author: Automattic
  5. Author URI: https://automattic.com/
  6. Description: OnyxPulse is a blog theme with Health Goth aesthetics. The theme emphasises the monochrome palette with a clean, futuristic vibe that could resonate with the fan.
  7. Requires at least: 6.0
  8. Tested up to: 6.5
  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: onyxpulse
  14. Tags: three-columns, block-patterns, block-styles, full-site-editing, rtl-language-support, threaded-comments, translation-ready
  15. */
  16. /* Progresive enhancement to reduce widows and orphans. */
  17. h1,
  18. h2,
  19. h3,
  20. h4,
  21. h5,
  22. h6,
  23. blockquote {
  24. text-wrap: balance;
  25. }
  26. p {
  27. text-wrap: pretty;
  28. }
  29. /*
  30. * Control the hover stylings of outline block style.
  31. * Unnecessary once block styles are configurable via theme.json
  32. * https://github.com/WordPress/gutenberg/issues/42794
  33. */
  34. .wp-block-button.is-style-outline >.wp-block-button__link:not(.has-background):hover {
  35. background-color: var(--wp--preset--color--theme-2);
  36. border-color: var(--wp--preset--color--theme-2);
  37. color: var(--wp--preset--color--theme-4);
  38. }
  39. /*
  40. * Link styles
  41. * https://github.com/WordPress/gutenberg/issues/42319
  42. */
  43. a {
  44. text-decoration-thickness: 0.5px !important;
  45. text-decoration-style: solid !important;
  46. text-underline-offset: 3px;
  47. }
  48. /*
  49. * Navigation Block
  50. * Reset the padding from List block
  51. * https://github.com/WordPress/gutenberg/issues/50486
  52. */
  53. .wp-block-navigation ul {
  54. padding: unset;
  55. }
  56. /*
  57. * Pull quote Block
  58. * Reset the browser default margins for blockquote and paragraph element
  59. * https://github.com/WordPress/gutenberg/issues/44129
  60. */
  61. .wp-block-pullquote blockquote,
  62. .wp-block-pullquote p {
  63. margin: 0;
  64. }