style.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. Theme Name: Ueno
  3. Theme URI: https://wordpress.com/theme/ueno
  4. Author: Automattic
  5. Author URI: https://automattic.com
  6. Description: Ueno is a mobile-first theme suitable for any kind of blog or website. It has an opinionated default style and two alternative style variations.
  7. Requires at least: 5.8
  8. Tested up to: 5.9
  9. Requires PHP: 5.7
  10. Version: 1.0.5
  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: ueno
  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. * Font smoothing
  18. * https://github.com/WordPress/gutenberg/issues/35934
  19. */
  20. body {
  21. -moz-osx-font-smoothing: grayscale;
  22. -webkit-font-smoothing: antialiased;
  23. }
  24. /*
  25. * Control the hover stylings of outline block style.
  26. * Unnecessary once block styles are configurable via theme.json
  27. * https://github.com/WordPress/gutenberg/issues/42794
  28. */
  29. .wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
  30. background-color: var(--wp--preset--color--secondary);
  31. color: var(--wp--preset--color--background);
  32. border-color: var(--wp--preset--color--secondary);
  33. }
  34. /**
  35. * Currently table styles are only available with 'wp-block-styles'
  36. * theme support (block css) thus the following needs to be included
  37. * since 'wp-block-styles' aren't used for this theme.
  38. * https://github.com/WordPress/gutenberg/issues/45065
  39. */
  40. .wp-block-table thead {
  41. border-bottom: 3px solid;
  42. }
  43. .wp-block-table tfoot {
  44. border-top: 3px solid;
  45. }
  46. .wp-block-table td,
  47. .wp-block-table th {
  48. padding: var(--wp--preset--spacing--30);
  49. border: 1px solid;
  50. word-break: normal;
  51. }
  52. .wp-block-table figcaption {
  53. font-size: var(--wp--preset--font-size--small);
  54. text-align: center;
  55. }
  56. /*
  57. * Link styles
  58. * https://github.com/WordPress/gutenberg/issues/42319
  59. */
  60. a {
  61. text-decoration-thickness: .0625em !important;
  62. text-underline-offset: .15em;
  63. }