_media.scss 810 B

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