_captions.scss 636 B

1234567891011121314151617181920212223242526272829303132
  1. .wp-caption {
  2. margin-bottom: calc(1.5 * #{$size__spacing-unit});
  3. &.aligncenter {
  4. @include media(tablet) {
  5. position: relative;
  6. left: calc( #{$size__site-tablet-content} / 2 );
  7. transform: translateX( -50% );
  8. }
  9. @include media(desktop) {
  10. left: calc( #{$size__site-desktop-content} / 2 );
  11. }
  12. }
  13. }
  14. .wp-caption img[class*="wp-image-"] {
  15. display: block;
  16. margin-left: auto;
  17. margin-right: auto;
  18. }
  19. .wp-caption-text {
  20. color: $color__text-dark;
  21. font-size: $font__size-xs;
  22. font-family: $font__heading;
  23. line-height: $font__line-height-pre;
  24. margin: 0;
  25. padding: ( $size__spacing-unit * .5 );
  26. text-align: center;
  27. }