_content.scss 918 B

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