1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /**
- * Entry Content
- */
- .entry-content,
- .entry-summary {
- }
- .entry-content {
- p {
- word-wrap: break-word;
- }
- .more-link {
- display: block;
- color: inherit;
- &: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: #{map-deep-get($config-global, "spacing", "vertical")} 0 !important;
- max-width: 100% !important;
- @include media(mobile) {
- max-width: #{map-deep-get($config-global, "spacing", "vertical")} !important;
- }
- }
- // Page links
- .page-links a {
- }
- // Classic editor audio embeds.
- .wp-audio-shortcode {
- @extend %responsive-aligndefault;
- }
- }
- .entry-attachment {
- text-align: center;
- }
|