style.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. Theme Name: Tomoni
  3. Theme URI: https://wordpress.com/theme/tomoni/
  4. Author: Automattic
  5. Author URI: https://automattic.com/
  6. Description: Tomoni is a theme that displays a use case of multilingual content with Japanese.
  7. Requires at least: 6.3
  8. Tested up to: 6.4
  9. Requires PHP: 5.7
  10. Version: 1.0.3
  11. License: GNU General Public License v2 or later
  12. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  13. Text Domain: tomoni
  14. Tags: blog, one-column, wide-blocks, block-patterns, block-styles, editor-style, featured-images, full-site-editing, rtl-language-support, template-editing, threaded-comments, translation-ready, style-variations
  15. */
  16. /*
  17. * OpenType feature for Noto Sans Japanese.
  18. * It re-spaces glyphs designed to be set on full-em widths, fitting them onto half-em widths.
  19. */
  20. body {
  21. font-feature-settings: "halt";
  22. }
  23. /*
  24. * Control the hover stylings of outline block style.
  25. * Unnecessary once block styles are configurable via theme.json
  26. * https://github.com/WordPress/gutenberg/issues/42794
  27. */
  28. .wp-block-button.is-style-outline >.wp-block-button__link:not(.has-background):hover {
  29. background-color: var(--wp--preset--color--primary);
  30. border-color: var(--wp--preset--color--primary);
  31. color: var(--wp--preset--color--base);
  32. }
  33. /*
  34. * Link styles
  35. * https://github.com/WordPress/gutenberg/issues/42319
  36. */
  37. a {
  38. text-decoration-thickness: 0.5px !important;
  39. text-underline-offset: .25em;
  40. }
  41. /*
  42. * Navigation Block
  43. * Reset the padding from List block
  44. * https://github.com/WordPress/gutenberg/issues/50486
  45. */
  46. .wp-block-navigation ul {
  47. padding: unset;
  48. }
  49. /*
  50. * Pull quote Block
  51. * Reset the browser default margins for blockquote element
  52. * https://github.com/WordPress/gutenberg/issues/44129
  53. */
  54. .wp-block-pullquote blockquote,
  55. .wp-block-pullquote p {
  56. margin: 0;
  57. }