style.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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.2
  9. Requires PHP: 5.7
  10. Version: 1.0.4
  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: blog, holiday, one-column, two-columns, wide-blocks, block-patterns, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, template-editing, threaded-comments, translation-ready, style-variations
  15. Status: inactive
  16. */
  17. /*
  18. * Link styles
  19. * https://github.com/WordPress/gutenberg/issues/42319
  20. */
  21. a {
  22. text-decoration-thickness: 1px !important;
  23. text-underline-offset: 2px;
  24. }
  25. /*
  26. * Avatar Block
  27. * Fix border radius setting for the avatar block
  28. * https://github.com/WordPress/gutenberg/issues/48253
  29. */
  30. .wp-block-avatar a,
  31. .wp-block-avatar img {
  32. border-radius: inherit;
  33. }
  34. /*
  35. * Button Block
  36. * Control the hover stylings of outline block style.
  37. * Unnecessary once block styles are configurable via theme.json
  38. * https://github.com/WordPress/gutenberg/issues/42794
  39. */
  40. .wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
  41. background-color: var(--wp--preset--color--primary);
  42. color: var(--wp--preset--color--base);
  43. border-color: var(--wp--preset--color--primary);
  44. }
  45. /*
  46. * Pull quote Block
  47. * Reset the browser default margins for blockquote element
  48. * https://github.com/WordPress/gutenberg/issues/44129
  49. */
  50. .wp-block-pullquote blockquote,
  51. .wp-block-pullquote p {
  52. margin: 0;
  53. }
  54. /*
  55. * Footer template part
  56. * There is no option to remove the top margin.
  57. * https://github.com/WordPress/gutenberg/issues/47637
  58. */
  59. .footer-container {
  60. margin-top: auto;
  61. }