style.css 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. Theme Name: Adventurer
  3. Theme URI: https://github.com/Automattic/themes/tree/trunk/adventurer
  4. Author: Automattic
  5. Author URI: https://automattic.com/
  6. Description: A theme for travelers, writers and photographers.
  7. Requires at least: 6.0
  8. Tested up to: 6.1.1
  9. Requires PHP: 5.7
  10. Version: 0.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: adventurer
  15. Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks
  16. */
  17. /*
  18. * Font smoothing
  19. * https://github.com/WordPress/gutenberg/issues/35934
  20. */
  21. body {
  22. -moz-osx-font-smoothing: grayscale;
  23. -webkit-font-smoothing: antialiased;
  24. }
  25. /*
  26. * Control the hover stylings of outline block style.
  27. * Unnecessary once block styles are configurable via theme.json
  28. * https://github.com/WordPress/gutenberg/issues/42794
  29. */
  30. .wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
  31. background-color: var(--wp--preset--color--secondary);
  32. color: var(--wp--preset--color--background);
  33. border-color: var(--wp--preset--color--secondary);
  34. }
  35. /**
  36. * Currently table styles are only available with 'wp-block-styles'
  37. * theme support (block css) thus the following needs to be included
  38. * since 'wp-block-styles' aren't used for this theme.
  39. * https://github.com/WordPress/gutenberg/issues/45065
  40. */
  41. .wp-block-table thead {
  42. border-bottom: 3px solid;
  43. }
  44. .wp-block-table tfoot {
  45. border-top: 3px solid;
  46. }
  47. .wp-block-table td,
  48. .wp-block-table th {
  49. padding: var(--wp--preset--spacing--30);
  50. border: 1px solid;
  51. word-break: normal;
  52. }
  53. .wp-block-table figcaption {
  54. font-size: var(--wp--preset--font-size--small);
  55. text-align: center;
  56. }
  57. /*
  58. * Link styles
  59. * https://github.com/WordPress/gutenberg/issues/42319
  60. */
  61. a {
  62. text-decoration-thickness: .0625em !important;
  63. text-underline-offset: .15em;
  64. }