style.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. .dashicons-arrow-up {
  21. content: "\f142";
  22. }
  23. .negative-bottom-margin-20 {
  24. margin-bottom: -20px !important;
  25. }
  26. .negative-bottom-margin-30 {
  27. margin-bottom: -30px !important;
  28. }
  29. .negative-bottom-margin-50 {
  30. margin-bottom: -50px !important;
  31. }
  32. .wp-block-navigation a {
  33. position: relative;
  34. }
  35. .wp-block-navigation a::before {
  36. content: "";
  37. position: absolute;
  38. display: block;
  39. width: 100%;
  40. height: 2px;
  41. bottom: 0;
  42. left: 0;
  43. background-color: var(--wp--preset--color--primary);
  44. transform: scaleX(0);
  45. transition: transform 0.3s ease;
  46. }
  47. .wp-block-navigation a:hover::before {
  48. transform: scaleX(1);
  49. }
  50. .wp-block-latest-posts__post-title {
  51. font-weight: 600;
  52. }
  53. .wp-block-latest-posts li {
  54. margin-bottom: 3em !important;
  55. }