File size: 2,625 Bytes
5546f2c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | /* Dashboard Page Styles - Aadhaar Pro */
/* Shared branded classes are in global.css - only page-specific styles here */
/* ========================================
1. DASHBOARD-SPECIFIC LAYOUT
======================================== */
/* .content-body {
max-width: 1400px;
} */
/* ========================================
2. WELCOME BANNER
======================================== */
.welcome-banner {
background: var(--primary-gradient);
border-radius: 20px;
padding: 30px 40px;
color: var(--white);
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
box-shadow: 0 10px 30px var(--shadow-primary-medium);
position: relative;
overflow: hidden;
}
.welcome-banner::after {
content: '';
position: absolute;
right: -50px;
top: -50px;
width: 200px;
height: 200px;
background: var(--white-transparent);
border-radius: 50%;
}
.welcome-text h1 {
font-size: 1.8rem;
margin-bottom: 8px;
}
.welcome-text p {
opacity: 0.9;
font-size: 1rem;
}
.welcome-img i {
font-size: 4rem;
opacity: 0.2;
}
/* ========================================
3. STATS GRID
======================================== */
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
margin-bottom: 30px;
}
@media (max-width: 1200px) {
.stats-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.stats-grid {
grid-template-columns: 1fr;
}
}
/* Dashboard-specific stat icon colors */
.stat-icon.balance {
background: rgba(76, 201, 240, 0.1);
color: var(--accent-color);
}
.stat-icon.today {
background: rgba(72, 149, 239, 0.1);
color: var(--primary-light);
}
.stat-icon.total {
background: rgba(114, 9, 183, 0.1);
color: var(--gradient-secondary);
}
.stat-icon.pending {
background: rgba(247, 37, 133, 0.1);
color: var(--error);
}
/* Dashboard-specific stat label/value */
.stat-info .stat-label {
font-size: 0.85rem;
color: var(--text-muted);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.stat-info .stat-value {
font-size: 1.4rem;
font-weight: 800;
color: var(--text-color);
}
/* ========================================
4. SERVICE GRID
======================================== */
.service-grid {
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 30px;
margin-top: 30px;
}
@media (max-width: 768px) {
.service-grid {
grid-template-columns: 1fr;
}
} |