12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /*!
- Theme Name: UHP
- Theme URI: http://upstatehealthpartners.com/
- Author: windhamdavid
- Author URI: https://davidwindham.com
- Description: A Theme for Upstate Health Partners
- Version: 0.1.0
- Tags: Full Site Editing, Blocks, Patterns
- Requires PHP: 7.0
- Tested up to: 6.5
- License: GNU General Public License v2 or later
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
- Thanks:
- Twenty Twenty Four * GNU GPL v2 or later - https://github.com/WordPress/twentytwentyfour
- */
- img {
- max-width: 100%;
- height: auto;
- }
- .dashicons-arrow-up {
- content: "\f142";
- }
- .negative-bottom-margin-20 {
- margin-bottom: -20px !important;
- }
- .negative-bottom-margin-30 {
- margin-bottom: -30px !important;
- }
- .negative-bottom-margin-50 {
- margin-bottom: -50px !important;
- }
- .wp-block-navigation a {
- position: relative;
- }
- .wp-block-navigation a::before {
- content: "";
- position: absolute;
- display: block;
- width: 100%;
- height: 2px;
- bottom: 0;
- left: 0;
- background-color: var(--wp--preset--color--primary);
- transform: scaleX(0);
- transition: transform 0.3s ease;
- }
- .wp-block-navigation a:hover::before {
- transform: scaleX(1);
- }
- .wp-block-latest-posts__post-title {
- font-weight: 600;
- }
- .wp-block-latest-posts li {
- margin-bottom: 3em !important;
- }
|