12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * Entry Content
- */
- .entry-content,
- .entry-summary {
- }
- .entry-content {
- p {
- word-wrap: break-word;
- }
- .more-link {
- display: block;
- color: inherit;
- margin-top: #{map-deep-get($config-global, "spacing", "unit")};
- @include media(mobile) {
- margin-top: #{map-deep-get($config-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: #{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;
- }
|