style.css 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. Theme Name: Entry
  3. Theme URI: https://wordpress.com/theme/entry
  4. Author: Automattic
  5. Author URI: https://automattic.com
  6. Description: Entry is a uniquely styled WordPress block theme designed for journaling. It features a grid layout and blocky layout for posts, with every element contained in squared or rectangular shapes. Its impactful design is sure to make a statement, while its customizable templates offer a range of options for creating a truly unique journaling experience.
  7. Requires at least: 5.8
  8. Tested up to: 6.2
  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: entry
  14. Tags: blog, news, portfolio, grid-layout, two-columns, wide-blocks, block-patterns, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, template-editing, theme-options, threaded-comments, translation-ready, squares, grid
  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. }