_entry-content.scss 871 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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,
  31. > iframe[style],
  32. > fb\:post {
  33. display: block !important;
  34. margin-left: auto !important;
  35. margin-right: auto !important;
  36. overflow: scroll;
  37. }
  38. // Page links
  39. .page-links a {
  40. }
  41. // Classic editor audio embeds.
  42. .wp-audio-shortcode {
  43. @extend %responsive-aligndefault;
  44. }
  45. }
  46. .entry-attachment {
  47. text-align: center;
  48. }