OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
admin
/
scss
/
bootstrap
/
utilities
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/12/2024 08:53:06 AM
rwxr-xr-x
📄
_align.scss
420 bytes
11/12/2024 08:53:05 AM
rw-r--r--
📄
_background.scss
397 bytes
11/12/2024 08:53:05 AM
rw-r--r--
📄
_borders.scss
1.72 KB
11/12/2024 08:53:05 AM
rw-r--r--
📄
_clearfix.scss
37 bytes
11/12/2024 08:53:05 AM
rw-r--r--
📄
_display.scss
519 bytes
11/12/2024 08:53:05 AM
rw-r--r--
📄
_embed.scss
846 bytes
11/12/2024 08:53:05 AM
rw-r--r--
📄
_flex.scss
2.7 KB
11/12/2024 08:53:05 AM
rw-r--r--
📄
_float.scss
376 bytes
11/12/2024 08:53:05 AM
rw-r--r--
📄
_overflow.scss
133 bytes
11/12/2024 08:53:05 AM
rw-r--r--
📄
_position.scss
484 bytes
11/12/2024 08:53:06 AM
rw-r--r--
📄
_screenreaders.scss
115 bytes
11/12/2024 08:53:06 AM
rw-r--r--
📄
_shadows.scss
249 bytes
11/12/2024 08:53:06 AM
rw-r--r--
📄
_sizing.scss
498 bytes
11/12/2024 08:53:06 AM
rw-r--r--
📄
_spacing.scss
2.05 KB
11/12/2024 08:53:06 AM
rw-r--r--
📄
_stretched-link.scss
431 bytes
11/12/2024 08:53:06 AM
rw-r--r--
📄
_text.scss
1.96 KB
11/12/2024 08:53:06 AM
rw-r--r--
📄
_visibility.scss
174 bytes
11/12/2024 08:53:06 AM
rw-r--r--
Editing: _spacing.scss
Close
// 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; } } } // Negative margins (e.g., where `.mb-n1` is negative version of `.mb-1`) @each $size, $length in $spacers { @if $size != 0 { .m#{$infix}-n#{$size} { margin: -$length !important; } .mt#{$infix}-n#{$size}, .my#{$infix}-n#{$size} { margin-top: -$length !important; } .mr#{$infix}-n#{$size}, .mx#{$infix}-n#{$size} { margin-right: -$length !important; } .mb#{$infix}-n#{$size}, .my#{$infix}-n#{$size} { margin-bottom: -$length !important; } .ml#{$infix}-n#{$size}, .mx#{$infix}-n#{$size} { margin-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; } } }