_entry-content.scss 787 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /**
  2. * Entry Content
  3. */
  4. .entry-content,
  5. .entry-summary {
  6. }
  7. .entry-content {
  8. p {
  9. word-wrap: break-word;
  10. }
  11. .more-link {
  12. display: block;
  13. color: inherit;
  14. &:after {
  15. content: "\02192";
  16. display: inline-block;
  17. margin-left: 0.5em;
  18. }
  19. &:hover {
  20. text-decoration: none;
  21. }
  22. }
  23. a {
  24. }
  25. // Overwrite iframe embeds that have inline styles.
  26. > iframe[style] {
  27. margin: #{map-deep-get($config-global, "spacing", "vertical")} 0 !important;
  28. max-width: 100% !important;
  29. @include media(mobile) {
  30. max-width: #{map-deep-get($config-global, "spacing", "vertical")} !important;
  31. }
  32. }
  33. // Page links
  34. .page-links a {
  35. }
  36. // Classic editor audio embeds.
  37. .wp-audio-shortcode {
  38. @extend %responsive-aligndefault;
  39. }
  40. }
  41. .entry-attachment {
  42. text-align: center;
  43. }