style.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. Theme Name: Gramming
  3. Theme URI: https://wordpress.com/theme/gramming
  4. Author: Automattic
  5. Author URI: https://automattic.com
  6. Description: Bring the Social Media experience to your site and transform it into a repository for your photos and videos. Get Gramming now.
  7. Requires at least: 5.8
  8. Tested up to: 6.1
  9. Requires PHP: 5.7
  10. Version: 0.0.2
  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: gramming
  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. * Link styles
  36. * https://github.com/WordPress/gutenberg/issues/42319
  37. */
  38. a {
  39. text-decoration-thickness: .0625em !important;
  40. text-underline-offset: .15em;
  41. }