_media.scss 652 B

123456789101112131415161718192021222324252627282930313233
  1. /* Media captions */
  2. figcaption,
  3. .wp-caption,
  4. .wp-caption-text {
  5. color: var(--global--color-foreground-low-contrast);
  6. font-size: var(--global--font-size-xs);
  7. line-height: var(--global--line-height-body);
  8. margin-top: calc(0.5 * var(--global--spacing-unit));
  9. margin-bottom: var(--global--spacing-unit);
  10. text-align: center;
  11. .alignleft &,
  12. .alignright & {
  13. margin-bottom: 0;
  14. }
  15. }
  16. /* WP Smiley */
  17. .page-content .wp-smiley,
  18. .entry-content .wp-smiley,
  19. .comment-content .wp-smiley {
  20. border: none;
  21. margin-bottom: 0;
  22. margin-top: 0;
  23. padding: 0;
  24. }
  25. /* Make sure embeds and iframes fit their containers. */
  26. embed,
  27. iframe,
  28. object {
  29. max-width: 100%;
  30. }