style.css 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. Theme Name: lois
  3. Theme URI: https://wordpress.com/theme/lois/
  4. Author: Automattic
  5. Author URI: https://wordpress.org/themes/
  6. Description: A theme in homage to George Lois, visionary American Art Director, and author. We will all miss your big ideas. Rest in Peace, George. From the Creative People of Automattic.
  7. Requires at least: 6.1
  8. Tested up to: 6.1
  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: lois
  15. Tags: two-columns, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks, auto-loading-homepage
  16. */
  17. /*
  18. * Control the hover stylings of outline block style.
  19. * Unnecessary once block styles are configurable via theme.json
  20. * https://github.com/WordPress/gutenberg/issues/42794
  21. */
  22. .wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
  23. background-color: var(--wp--preset--color--secondary);
  24. color: var(--wp--preset--color--foreground);
  25. border-color: var(--wp--preset--color--secondary);
  26. }
  27. /**
  28. * Currently table styles are only available with 'wp-block-styles'
  29. * theme support (block css) thus the following needs to be included
  30. * since 'wp-block-styles' aren't used for this theme.
  31. * https://github.com/WordPress/gutenberg/issues/45065
  32. */
  33. .wp-block-table thead {
  34. border-bottom: 3px solid;
  35. }
  36. .wp-block-table tfoot {
  37. border-top: 3px solid;
  38. }
  39. .wp-block-table td,
  40. .wp-block-table th {
  41. padding: var(--wp--preset--spacing--30);
  42. border: 1px solid;
  43. word-break: normal;
  44. }
  45. .wp-block-table figcaption {
  46. font-size: var(--wp--preset--font-size--small);
  47. text-align: center;
  48. }
  49. /*
  50. * Link styles
  51. * https://github.com/WordPress/gutenberg/issues/42319
  52. */
  53. a {
  54. text-decoration-thickness: .0625em !important;
  55. text-underline-offset: .15em;
  56. }