Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 18.117.71.239
66 Domain
8.0.30
amvm
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
home /
amvm /
public_html /
madhir /
scss /
bootstrap /
[ HOME SHELL ]
Name
Size
Permission
Action
mixins
[ DIR ]
drwxr-xr-x
utilities
[ DIR ]
drwxr-xr-x
_alert.scss
1.12
KB
-rwxr-xr-x
_badge.scss
982
B
-rwxr-xr-x
_breadcrumb.scss
1.25
KB
-rwxr-xr-x
_button-group.scss
3.65
KB
-rwxr-xr-x
_buttons.scss
2.65
KB
-rwxr-xr-x
_card.scss
5.9
KB
-rwxr-xr-x
_carousel.scss
5.13
KB
-rwxr-xr-x
_close.scss
873
B
-rwxr-xr-x
_code.scss
968
B
-rwxr-xr-x
_custom-forms.scss
11.97
KB
-rwxr-xr-x
_dropdown.scss
3.67
KB
-rwxr-xr-x
_forms.scss
8.55
KB
-rwxr-xr-x
_functions.scss
2.6
KB
-rwxr-xr-x
_grid.scss
1016
B
-rwxr-xr-x
_images.scss
1.12
KB
-rwxr-xr-x
_input-group.scss
5.23
KB
-rwxr-xr-x
_jumbotron.scss
378
B
-rwxr-xr-x
_list-group.scss
2.82
KB
-rwxr-xr-x
_media.scss
83
B
-rwxr-xr-x
_mixins.scss
984
B
-rwxr-xr-x
_modal.scss
4.82
KB
-rwxr-xr-x
_nav.scss
1.97
KB
-rwxr-xr-x
_navbar.scss
6.38
KB
-rwxr-xr-x
_pagination.scss
1.83
KB
-rwxr-xr-x
_popover.scss
4.43
KB
-rwxr-xr-x
_print.scss
2.93
KB
-rwxr-xr-x
_progress.scss
864
B
-rwxr-xr-x
_reboot.scss
11.28
KB
-rwxr-xr-x
_root.scss
572
B
-rwxr-xr-x
_tables.scss
3.44
KB
-rwxr-xr-x
_tooltip.scss
2.44
KB
-rwxr-xr-x
_transitions.scss
311
B
-rwxr-xr-x
_type.scss
2.07
KB
-rwxr-xr-x
_utilities.scss
436
B
-rwxr-xr-x
_variables.scss
37.87
KB
-rwxr-xr-x
bootstrap-grid.scss
649
B
-rwxr-xr-x
bootstrap-reboot.scss
411
B
-rwxr-xr-x
bootstrap.scss
882
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : _functions.scss
// Bootstrap functions // // Utility mixins and functions for evaluating source code across our variables, maps, and mixins. // Ascending // Used to evaluate Sass maps like our grid breakpoints. @mixin _assert-ascending($map, $map-name) { $prev-key: null; $prev-num: null; @each $key, $num in $map { @if $prev-num == null { // Do nothing } @else if not comparable($prev-num, $num) { @warn "Potentially invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} whose unit makes it incomparable to #{$prev-num}, the value of the previous key '#{$prev-key}' !"; } @else if $prev-num >= $num { @warn "Invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} which isn't greater than #{$prev-num}, the value of the previous key '#{$prev-key}' !"; } $prev-key: $key; $prev-num: $num; } } // Starts at zero // Another grid mixin that ensures the min-width of the lowest breakpoint starts at 0. @mixin _assert-starts-at-zero($map) { $values: map-values($map); $first-value: nth($values, 1); @if $first-value != 0 { @warn "First breakpoint in `$grid-breakpoints` must start at 0, but starts at #{$first-value}."; } } // Replace `$search` with `$replace` in `$string` // Used on our SVG icon backgrounds for custom forms. // // @author Hugo Giraudel // @param {String} $string - Initial string // @param {String} $search - Substring to replace // @param {String} $replace ('') - New value // @return {String} - Updated string @function str-replace($string, $search, $replace: "") { $index: str-index($string, $search); @if $index { @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace); } @return $string; } // Color contrast @function color-yiq($color) { $r: red($color); $g: green($color); $b: blue($color); $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000; @if ($yiq >= $yiq-contrasted-threshold) { @return $yiq-text-dark; } @else { @return $yiq-text-light; } } // Retrieve color Sass maps @function color($key: "blue") { @return map-get($colors, $key); } @function theme-color($key: "primary") { @return map-get($theme-colors, $key); } @function gray($key: "100") { @return map-get($grays, $key); } // Request a theme color level @function theme-color-level($color-name: "primary", $level: 0) { $color: theme-color($color-name); $color-base: if($level > 0, $black, $white); $level: abs($level); @return mix($color-base, $color, $level * $theme-color-interval); }
Close