1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /**
- * Editor Post Title
- * - Needs a special styles
- */
- /*
- color: var(--global--color-primary);
- font-family: var(--heading--font-family);
- font-weight: var(--heading--font-weight);
- font-size: var(--heading--font-size-h2);
- letter-spacing: var(--heading--letter-spacing-h2);
- line-height: var(--heading--line-height);
- }
- */
- // Post title style
- .entry-title,
- .editor-post-title__block .editor-post-title__input { // To target the editor
- color: var(--entry-header--color);
- font-family: var(--heading--font-family);
- font-size: var(--entry-header--font-size);
- font-weight: var(--heading--font-weight);
- letter-spacing: var(--heading--letter-spacing-h2);
- line-height: var(--heading--line-height);
- overflow-wrap: break-word;
- a {
- color: var(--entry-header--color-link);
- &:hover {
- color: var(--entry-header--color-hover);
- }
- &:focus {
- color: var(--entry-header--color-focus);
- }
- &:active {
- color: var(--entry-header--color-link);
- }
- }
- }
|