style.css 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. Theme Name: Blogorama
  3. Theme URI: https://github.com/wordpress/blogorama/
  4. Author: Automattic
  5. Author URI: https://wordpress.org/themes/
  6. Description: A beautifully designed blog theme displaying large typography and customizable color palettes. With a clean and modern design, Blogorama offers a unique and engaging way to showcase your blog content.
  7. Requires at least: 5.8
  8. Tested up to: 6.3
  9. Requires PHP: 5.7
  10. Version: 1.0.2
  11. License: GNU General Public License v2 or later
  12. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  13. Text Domain: blogorama
  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, magazine, blog, magazine-style, big-type, typography, big-images, posts, reviews, artwork, news, customizable
  15. *//*
  16. * Control the hover stylings of outline block style.
  17. * Unnecessary once block styles are configurable via theme.json
  18. * https://github.com/WordPress/gutenberg/issues/42794
  19. */
  20. .wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
  21. background-color: var(--wp--preset--color--secondary);
  22. color: var(--wp--preset--color--background);
  23. border-color: var(--wp--preset--color--secondary);
  24. }
  25. /**
  26. * Currently table styles are only available with 'wp-block-styles'
  27. * theme support (block css) thus the following needs to be included
  28. * since 'wp-block-styles' aren't used for this theme.
  29. * https://github.com/WordPress/gutenberg/issues/45065
  30. */
  31. .wp-block-table thead {
  32. border-bottom: 3px solid;
  33. }
  34. .wp-block-table tfoot {
  35. border-top: 3px solid;
  36. }
  37. .wp-block-table td,
  38. .wp-block-table th {
  39. padding: var(--wp--preset--spacing--30);
  40. border: 1px solid;
  41. word-break: normal;
  42. }
  43. .wp-block-table figcaption {
  44. font-size: var(--wp--preset--font-size--small);
  45. text-align: center;
  46. }
  47. /*
  48. * Link styles
  49. * https://github.com/WordPress/gutenberg/issues/42319
  50. */
  51. a {
  52. text-decoration-thickness: .0625em !important;
  53. text-underline-offset: .15em;
  54. }