style.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*!
  2. Theme Name: UHP
  3. Theme URI: http://upstatehealthpartners.com/
  4. Author: windhamdavid
  5. Author URI: https://davidwindham.com
  6. Description: A Theme for Upstate Health Partners
  7. Version: 0.1.0
  8. Tags: Full Site Editing, Blocks, Patterns
  9. Requires PHP: 7.0
  10. Tested up to: 6.5
  11. License: GNU General Public License v2 or later
  12. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  13. Thanks:
  14. Twenty Twenty Four * GNU GPL v2 or later - https://github.com/WordPress/twentytwentyfour
  15. */
  16. img {
  17. max-width: 100%;
  18. height: auto;
  19. }
  20. .negative-bottom-margin {
  21. margin-bottom: -30px !important;
  22. opacity: 1;
  23. }
  24. .wp-block-navigation a {
  25. position: relative;
  26. }
  27. .wp-block-navigation a::before {
  28. content: "";
  29. position: absolute;
  30. display: block;
  31. width: 100%;
  32. height: 2px;
  33. bottom: 0;
  34. left: 0;
  35. background-color: var(--wp--preset--color--highlight);
  36. transform: scaleX(0);
  37. transition: transform 0.3s ease;
  38. }
  39. .wp-block-navigation a:hover::before {
  40. transform: scaleX(1);
  41. }
  42. .wp-block-latest-posts__post-title {
  43. font-weight: 600;
  44. }
  45. .wp-block-latest-posts li {
  46. margin-bottom: 5em !important;
  47. }