style.css 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. Theme Name: Brightblog
  3. Theme URI: https://themeshaper.com/brightblog/
  4. Author: Automattic
  5. Author URI: https://automattic.com
  6. Description: Brightblog is a blog theme displaying large typography and vibrant color palettes. With its clean and modern design, the theme offers a unique and engaging way to showcase your blog content.
  7. Requires at least: 5.8
  8. Tested up to: 6.5
  9. Requires PHP: 5.7
  10. Version: 1.0
  11. License: GNU General Public License v2 or later
  12. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  13. Text Domain: brightblog
  14. Tags: blog, entertainment, news, two-columns, left-sidebar, wide-blocks, block-patterns, block-styles, custom-background, custom-colors, custom-logo, editor-style, featured-images, full-site-editing, post-formats, style-variations, template-editing, theme-options
  15. /**
  16. * Currently table styles are only available with 'wp-block-styles'
  17. * theme support (block css) thus the following needs to be included
  18. * since 'wp-block-styles' aren't used for this theme.
  19. * https://github.com/WordPress/gutenberg/issues/45065
  20. */
  21. /*
  22. * Control the hover stylings of outline block style.
  23. * Unnecessary once block styles are configurable via theme.json
  24. * https://github.com/WordPress/gutenberg/issues/42794
  25. */
  26. .wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
  27. background-color: var(--wp--preset--color--secondary);
  28. color: var(--wp--preset--color--background);
  29. border-color: var(--wp--preset--color--secondary);
  30. }
  31. /**
  32. * Currently table styles are only available with 'wp-block-styles'
  33. * theme support (block css) thus the following needs to be included
  34. * since 'wp-block-styles' aren't used for this theme.
  35. * https://github.com/WordPress/gutenberg/issues/45065
  36. */
  37. .wp-block-table thead {
  38. border-bottom: 3px solid;
  39. }
  40. .wp-block-table tfoot {
  41. border-top: 3px solid;
  42. }
  43. .wp-block-table td,
  44. .wp-block-table th {
  45. padding: var(--wp--preset--spacing--30);
  46. border: 1px solid;
  47. word-break: normal;
  48. }
  49. .wp-block-table figcaption {
  50. font-size: var(--wp--preset--font-size--small);
  51. text-align: center;
  52. }
  53. /*
  54. * Link styles
  55. * https://github.com/WordPress/gutenberg/issues/42319
  56. */
  57. a {
  58. text-decoration-thickness: .0625em !important;
  59. text-underline-offset: .15em;
  60. }