style.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. Theme Name: LeanCV
  3. Theme URI: https://themeshaper.com/leancv/
  4. Author: Automattic
  5. Author URI: https://automattic.com
  6. Description: LeanCV is a blog theme that echoes the structure of a professional profile with original visuals and interesting navigation. It's suitable for the general public to display information, experiences, and education. And it's super easy to customize.
  7. Requires at least: 6.0
  8. Tested up to: 6.5
  9. Requires PHP: 5.7
  10. Version: 1.1
  11. License: GNU General Public License v2 or later
  12. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  13. Text Domain: leancv
  14. Tags: blog, education, two-columns, block-patterns, block-styles, custom-colors, custom-header, custom-menu, editor-style, flexible-header, full-site-editing, post-formats, rtl-language-support, style-variations, template-editing, threaded-comments, translation-ready
  15. /*
  16. * Control the hover stylings of outline block style.
  17. * Unnecessary once block styles are configurable via theme.json
  18. * https://github.com/WordPress/gutenberg/issues/42794
  19. */
  20. /*
  21. * Control the hover stylings of outline block style.
  22. * Unnecessary once block styles are configurable via theme.json
  23. * https://github.com/WordPress/gutenberg/issues/42794
  24. */
  25. .wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
  26. background-color: var(--wp--preset--color--secondary);
  27. color: var(--wp--preset--color--background);
  28. border-color: var(--wp--preset--color--secondary);
  29. }
  30. /**
  31. * Currently table styles are only available with 'wp-block-styles'
  32. * theme support (block css) thus the following needs to be included
  33. * since 'wp-block-styles' aren't used for this theme.
  34. * https://github.com/WordPress/gutenberg/issues/45065
  35. */
  36. .wp-block-table thead {
  37. border-bottom: 3px solid;
  38. }
  39. .wp-block-table tfoot {
  40. border-top: 3px solid;
  41. }
  42. .wp-block-table td,
  43. .wp-block-table th {
  44. padding: var(--wp--preset--spacing--30);
  45. border: 1px solid;
  46. word-break: normal;
  47. }
  48. .wp-block-table figcaption {
  49. font-size: var(--wp--preset--font-size--small);
  50. text-align: center;
  51. }
  52. /*
  53. * Link styles
  54. * https://github.com/WordPress/gutenberg/issues/42319
  55. */
  56. a {
  57. text-decoration-thickness: .0625em !important;
  58. text-underline-offset: .15em;
  59. }