style.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. Theme Name: Exmoor
  3. Theme URI: https://wordpress.com/theme/exmoor/
  4. Author: Automattic
  5. Author URI: https://automattic.com/
  6. Description: Exmoor is a business theme
  7. Requires at least: 6.0
  8. Tested up to: 6.4
  9. Requires PHP: 5.7
  10. Version: 1.0.6
  11. License: GNU General Public License v2 or later
  12. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  13. Text Domain: exmoor
  14. Tags: holiday, one-column, wide-blocks, block-patterns,featured-images, full-site-editing, rtl-language-support, threaded-comments, translation-ready, style-variations
  15. Status: inactive
  16. */
  17. /*
  18. * Button Block
  19. * Control the hover stylings of outline block style.
  20. * Unnecessary once block styles are configurable via theme.json
  21. * https://github.com/WordPress/gutenberg/issues/42794
  22. */
  23. .wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
  24. background-color: var(--wp--preset--color--primary);
  25. color: var(--wp--preset--color--base);
  26. border-color: var(--wp--preset--color--primary);
  27. }
  28. /*
  29. * Link styles
  30. * https://github.com/WordPress/gutenberg/issues/42319
  31. */
  32. a {
  33. text-decoration-thickness: 1px !important;
  34. text-underline-offset: 2px;
  35. }
  36. /*
  37. * Navigation Block
  38. * Reset the padding from List block
  39. * https://github.com/WordPress/gutenberg/issues/50486
  40. */
  41. .wp-block-navigation ul {
  42. padding: unset;
  43. }
  44. /*
  45. * Pull quote Block
  46. * Reset the browser default margins for blockquote element
  47. * https://github.com/WordPress/gutenberg/issues/44129
  48. */
  49. .wp-block-pullquote blockquote,
  50. .wp-block-pullquote p {
  51. margin: 0;
  52. }
  53. /*
  54. * Footer template part
  55. * There is no option to remove the top margin.
  56. * https://github.com/WordPress/gutenberg/issues/47637
  57. */
  58. .footer-container {
  59. margin-top: auto;
  60. }