| DIR: /home/aissorg/public_html/fonts/qzfcvsedcv/werwcwsfs /home/aissorg/public_html/fonts/qzfcvsedcv/werwcwsfs/ |
| Current File : /home/aissorg/public_html/fonts/qzfcvsedcv/werwcwsfs/_spacing.scss.tar |
home/aissorg/public_html/scss/bootstrap/utilities/_spacing.scss 0000644 00000002661 15116247721 0021143 0 ustar 00 // stylelint-disable declaration-no-important
// Margin and Padding
@each $breakpoint in map-keys($grid-breakpoints) {
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
@each $prop, $abbrev in (margin: m, padding: p) {
@each $size, $length in $spacers {
.#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }
.#{$abbrev}t#{$infix}-#{$size},
.#{$abbrev}y#{$infix}-#{$size} {
#{$prop}-top: $length !important;
}
.#{$abbrev}r#{$infix}-#{$size},
.#{$abbrev}x#{$infix}-#{$size} {
#{$prop}-right: $length !important;
}
.#{$abbrev}b#{$infix}-#{$size},
.#{$abbrev}y#{$infix}-#{$size} {
#{$prop}-bottom: $length !important;
}
.#{$abbrev}l#{$infix}-#{$size},
.#{$abbrev}x#{$infix}-#{$size} {
#{$prop}-left: $length !important;
}
}
}
// Some special margin utils
.m#{$infix}-auto { margin: auto !important; }
.mt#{$infix}-auto,
.my#{$infix}-auto {
margin-top: auto !important;
}
.mr#{$infix}-auto,
.mx#{$infix}-auto {
margin-right: auto !important;
}
.mb#{$infix}-auto,
.my#{$infix}-auto {
margin-bottom: auto !important;
}
.ml#{$infix}-auto,
.mx#{$infix}-auto {
margin-left: auto !important;
}
}
}
home/aissorg/public_html/scss/custom-styles/mixins/_spacing.scss 0000644 00000001120 15116273530 0021237 0 ustar 00 //
// Spacing: padding-based layout
//
@mixin spacing($x, $y : $x) {
transform: translate3d(0, -$y, 0);
margin-bottom: -$y;
margin-left: - round($x / 2);
margin-right: - round($x / 2);
> * {
margin-top: $y;
padding-left: round($x / 2);
padding-right: round($x / 2);
}
}
@mixin spacingX($x) {
margin-left: - round($x / 2);
margin-right: - round($x / 2);
> * {
padding-left: round($x / 2);
padding-right: round($x / 2);
}
}
@mixin spacingY($y) {
transform: translate3d(0, -$y, 0);
margin-bottom: -$y;
> * {
margin-top: $y;
}
}
|