Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
amatya.biz /
sass /
bootstrap /
mixins /
[ HOME SHELL ]
Name
Size
Permission
Action
_alerts.scss
263
B
-rwxrwxr-x
_background-variant.scss
233
B
-rwxrwxr-x
_border-radius.scss
492
B
-rwxrwxr-x
_buttons.scss
1.45
KB
-rwxrwxr-x
_center-block.scss
126
B
-rwxrwxr-x
_clearfix.scss
611
B
-rwxrwxr-x
_forms.scss
2.71
KB
-rwxrwxr-x
_gradients.scss
4.29
KB
-rwxrwxr-x
_grid-framework.scss
2.3
KB
-rwxrwxr-x
_grid.scss
3.13
KB
-rwxrwxr-x
_hide-text.scss
589
B
-rwxrwxr-x
_image.scss
1.18
KB
-rwxrwxr-x
_labels.scss
167
B
-rwxrwxr-x
_list-group.scss
672
B
-rwxrwxr-x
_nav-divider.scss
238
B
-rwxrwxr-x
_nav-vertical-align.scss
370
B
-rwxrwxr-x
_opacity.scss
149
B
-rwxrwxr-x
_pagination.scss
507
B
-rwxrwxr-x
_panels.scss
543
B
-rwxrwxr-x
_progress-bar.scss
200
B
-rwxrwxr-x
_reset-filter.scss
246
B
-rwxrwxr-x
_reset-text.scss
476
B
-rwxrwxr-x
_resize.scss
202
B
-rwxrwxr-x
_responsive-visibility.scss
514
B
-rwxrwxr-x
_size.scss
147
B
-rwxrwxr-x
_tab-focus.scss
165
B
-rwxrwxr-x
_table-row.scss
715
B
-rwxrwxr-x
_text-emphasis.scss
210
B
-rwxrwxr-x
_text-overflow.scss
168
B
-rwxrwxr-x
_vendor-prefixes.scss
6.49
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : _grid-framework.scss
// Framework grid generation // // Used only by Bootstrap to generate the correct number of grid classes given // any value of `$grid-columns`. // [converter] This is defined recursively in LESS, but Sass supports real loops @mixin make-grid-columns($i: 1, $list: ".col-xs-#{$i}, .col-sm-#{$i}, .col-md-#{$i}, .col-lg-#{$i}") { @for $i from (1 + 1) through $grid-columns { $list: "#{$list}, .col-xs-#{$i}, .col-sm-#{$i}, .col-md-#{$i}, .col-lg-#{$i}"; } #{$list} { position: relative; // Prevent columns from collapsing when empty min-height: 1px; // Inner gutter via padding padding-left: ceil(($grid-gutter-width / 2)); padding-right: floor(($grid-gutter-width / 2)); } } // [converter] This is defined recursively in LESS, but Sass supports real loops @mixin float-grid-columns($class, $i: 1, $list: ".col-#{$class}-#{$i}") { @for $i from (1 + 1) through $grid-columns { $list: "#{$list}, .col-#{$class}-#{$i}"; } #{$list} { float: left; } } @mixin calc-grid-column($index, $class, $type) { @if ($type == width) and ($index > 0) { .col-#{$class}-#{$index} { width: percentage(($index / $grid-columns)); } } @if ($type == push) and ($index > 0) { .col-#{$class}-push-#{$index} { left: percentage(($index / $grid-columns)); } } @if ($type == push) and ($index == 0) { .col-#{$class}-push-0 { left: auto; } } @if ($type == pull) and ($index > 0) { .col-#{$class}-pull-#{$index} { right: percentage(($index / $grid-columns)); } } @if ($type == pull) and ($index == 0) { .col-#{$class}-pull-0 { right: auto; } } @if ($type == offset) { .col-#{$class}-offset-#{$index} { margin-left: percentage(($index / $grid-columns)); } } } // [converter] This is defined recursively in LESS, but Sass supports real loops @mixin loop-grid-columns($columns, $class, $type) { @for $i from 0 through $columns { @include calc-grid-column($i, $class, $type); } } // Create grid for specific class @mixin make-grid($class) { @include float-grid-columns($class); @include loop-grid-columns($grid-columns, $class, width); @include loop-grid-columns($grid-columns, $class, pull); @include loop-grid-columns($grid-columns, $class, push); @include loop-grid-columns($grid-columns, $class, offset); }
Close