_entry-content.scss 956 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. margin-top: #{map-deep-get($config-global, "spacing", "unit")};
  15. @include media(mobile) {
  16. margin-top: #{map-deep-get($config-global, "spacing", "vertical")};
  17. }
  18. &:after {
  19. content: "\02192";
  20. display: inline-block;
  21. margin-left: 0.5em;
  22. }
  23. &:hover {
  24. text-decoration: none;
  25. }
  26. }
  27. a {
  28. }
  29. // Overwrite iframe embeds that have inline styles.
  30. > iframe[style] {
  31. margin: #{map-deep-get($config-global, "spacing", "vertical")} 0 !important;
  32. max-width: 100% !important;
  33. @include media(mobile) {
  34. max-width: #{map-deep-get($config-global, "spacing", "vertical")} !important;
  35. }
  36. }
  37. // Page links
  38. .page-links a {
  39. }
  40. // Classic editor audio embeds.
  41. .wp-audio-shortcode {
  42. @extend %responsive-aligndefault;
  43. }
  44. }
  45. .entry-attachment {
  46. text-align: center;
  47. }