style.css 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. Theme Name: MENU
  3. Theme URI: https://github.com/wordpress/menutheme/
  4. Author: the WordPress team
  5. Author URI: https://wordpress.org/themes/
  6. Description: A simple theme designed to facilitate restaurant owners' experience when building their sites. Is clean, direct, and customizable.
  7. Requires at least: 6.1
  8. Tested up to: 6.2
  9. Requires PHP: 5.7
  10. Version: 1.0.0
  11. License: GNU General Public License v2 or later
  12. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  13. Text Domain: menu
  14. Tags: food-and-drink, three-columns, wide-blocks, block-patterns, block-styles, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, flexible-header, full-site-editing, auto-loading-homepage, post-formats, rtl-language-support, style-variations, theme-options, threaded-comments, translation-ready, restaurants, menu, cuisine, food, lacarte, static, dujour, fixedmenu, bar, cafeteria, coffeeshop
  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: .0625em !important;
  62. text-underline-offset: .15em;
  63. }