1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /**
- * WP.com stylesheet for Varia
- */
- /**
- * Hide page title on the homepage
- */
- .home.page.hide-homepage-title .entry-header {
- display: none;
- }
- .home.page.hide-homepage-title .site-main > article > .entry-content {
- margin-top: 0;
- }
- /**
- * Fix Direct Manipulation icons in the Customizer
- */
- .cdm-icon svg {
- fill: #fff;
- }
- /**
- * Fix 'reply' comment textarea vertical spacing
- */
- .comment-list #respond #commentform {
- clear: both;
- }
- .comment-reply-title #cancel-comment-reply-link {
- font-size: 15.65px;
- margin-bottom: 1em;
- }
- /**
- * Hide Footer Credit comma
- */
- .hide-footer-credit .comma {
- display: none;
- }
|