_media.scss 733 B

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