style.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. Theme Name: JinJang
  3. Theme URI: https://wordpress.com/theme/jinjang/
  4. Author: Automattic
  5. Author URI: https://automattic.com/
  6. Description: JinJang is a blog theme with a split, 50:50 layout like Yan Yang.
  7. Requires at least: 5.8
  8. Tested up to: 6.3
  9. Requires PHP: 5.7
  10. Version: 1.0.1
  11. License: GNU General Public License v2 or later
  12. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  13. Template:
  14. Text Domain: jinjang
  15. Tags: blog, two-columns, wide-blocks, block-patterns, featured-images, full-site-editing, rtl-language-support, template-editing, threaded-comments, translation-ready
  16. */
  17. /*
  18. * Link styles
  19. * https://github.com/WordPress/gutenberg/issues/42319
  20. */
  21. a {
  22. text-decoration-thickness: 1.0px !important;
  23. text-underline-offset: 1.5px;
  24. }
  25. /*
  26. * Form field styles
  27. * https://github.com/WordPress/gutenberg/issues/42319
  28. */
  29. ::placeholder {
  30. color: var(--wp--preset--color--contrast);
  31. opacity: 1; /* Firefox */
  32. }
  33. /*
  34. * Button Block
  35. * Control the hover stylings of outline block style.
  36. * Unnecessary once block styles are configurable via theme.json
  37. * https://github.com/WordPress/gutenberg/issues/42794
  38. */
  39. .wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
  40. background-color: var(--wp--preset--color--primary);
  41. border-color: var(--wp--preset--color--primary);
  42. color: var(--wp--preset--color--base);
  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. * Navigation Block
  55. * Reset the padding from List block
  56. * https://github.com/WordPress/gutenberg/issues/50486
  57. */
  58. .wp-block-navigation ul {
  59. padding: unset;
  60. }