style.css 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. Theme Name: Fewer
  3. Theme URI: https://wordpress.com/theme/fewer
  4. Author: Automattic
  5. Author URI: https://automattic.com
  6. Description: Fewer is perfect for showcasing portfolios and blogs. With a clean and opinionated design, it offers excellent typography and style variations that make it easy to present your work or business. The theme is highly versatile, making it ideal for bloggers and businesses alike, and it offers a range of customizable options that allow you to tailor your site to your specific needs.
  7. Requires at least: 5.8
  8. Tested up to: 6.2
  9. Requires PHP: 5.7
  10. Version: 1.0.4
  11. License: GNU General Public License v2 or later
  12. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  13. Text Domain: fewer
  14. Tags: blog, news, portfolio, grid-layout, two-columns, three-columns, left-sidebar, wide-blocks, block-patterns, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, style-variations, template-editing, theme-options, threaded-comments, translation-ready
  15. */
  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: .02em !important;
  62. text-underline-offset: .25em;
  63. }