12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * Entry Content
- */
- .entry-content,
- .entry-summary {
- font-family: var(--entry-content--font-family);
- }
- .entry-content {
- p {
- word-wrap: break-word;
- }
- .more-link {
- display: table;
- color: inherit;
- margin-top: var(--global--spacing-unit);
- @include media(mobile) {
- margin-top: var(--global--spacing-vertical);
- }
- &:after {
- content: "\02192";
- display: inline-block;
- margin-left: 0.5em;
- }
- &:hover {
- text-decoration: none;
- }
- }
- a {
- }
- // Overwrite iframe embeds that have inline styles.
- > iframe[style] {
- margin: var(--global--spacing-vertical) 0 !important;
- max-width: 100% !important;
- @include media(mobile) {
- max-width: var(--global--spacing-vertical) !important;
- }
- }
- // Page links
- .page-links a {
- }
- // Classic editor audio embeds.
- .wp-audio-shortcode {
- @extend %responsive-aligndefault-width;
- }
- }
- .entry-attachment {
- text-align: center;
- }
|