Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.143.203.21
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
bootstrap /
scss /
Delete
Unzip
Name
Size
Permission
Date
Action
mixins
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
utilities
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
_alert.scss
1.12
KB
-rw-r--r--
1985-10-26 08:15
_badge.scss
982
B
-rw-r--r--
1985-10-26 08:15
_breadcrumb.scss
1.25
KB
-rw-r--r--
1985-10-26 08:15
_button-group.scss
3.65
KB
-rw-r--r--
1985-10-26 08:15
_buttons.scss
2.65
KB
-rw-r--r--
1985-10-26 08:15
_card.scss
5.9
KB
-rw-r--r--
1985-10-26 08:15
_carousel.scss
5.13
KB
-rw-r--r--
1985-10-26 08:15
_close.scss
873
B
-rw-r--r--
1985-10-26 08:15
_code.scss
968
B
-rw-r--r--
1985-10-26 08:15
_custom-forms.scss
11.97
KB
-rw-r--r--
1985-10-26 08:15
_dropdown.scss
3.67
KB
-rw-r--r--
1985-10-26 08:15
_forms.scss
8.55
KB
-rw-r--r--
1985-10-26 08:15
_functions.scss
2.6
KB
-rw-r--r--
1985-10-26 08:15
_grid.scss
1016
B
-rw-r--r--
1985-10-26 08:15
_images.scss
1.12
KB
-rw-r--r--
1985-10-26 08:15
_input-group.scss
5.23
KB
-rw-r--r--
1985-10-26 08:15
_jumbotron.scss
378
B
-rw-r--r--
1985-10-26 08:15
_list-group.scss
2.82
KB
-rw-r--r--
1985-10-26 08:15
_media.scss
83
B
-rw-r--r--
1985-10-26 08:15
_mixins.scss
984
B
-rw-r--r--
1985-10-26 08:15
_modal.scss
4.82
KB
-rw-r--r--
1985-10-26 08:15
_nav.scss
1.97
KB
-rw-r--r--
1985-10-26 08:15
_navbar.scss
6.38
KB
-rw-r--r--
1985-10-26 08:15
_pagination.scss
1.83
KB
-rw-r--r--
1985-10-26 08:15
_popover.scss
4.43
KB
-rw-r--r--
1985-10-26 08:15
_print.scss
2.93
KB
-rw-r--r--
1985-10-26 08:15
_progress.scss
864
B
-rw-r--r--
1985-10-26 08:15
_reboot.scss
11.28
KB
-rw-r--r--
1985-10-26 08:15
_root.scss
572
B
-rw-r--r--
1985-10-26 08:15
_tables.scss
3.44
KB
-rw-r--r--
1985-10-26 08:15
_tooltip.scss
2.44
KB
-rw-r--r--
1985-10-26 08:15
_transitions.scss
311
B
-rw-r--r--
1985-10-26 08:15
_type.scss
2.07
KB
-rw-r--r--
1985-10-26 08:15
_utilities.scss
436
B
-rw-r--r--
1985-10-26 08:15
_variables.scss
37.76
KB
-rw-r--r--
1985-10-26 08:15
bootstrap-grid.scss
649
B
-rw-r--r--
1985-10-26 08:15
bootstrap-reboot.scss
411
B
-rw-r--r--
1985-10-26 08:15
bootstrap.scss
882
B
-rw-r--r--
1985-10-26 08:15
Save
Rename
// 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); }