File size: 4,528 Bytes
57da3ff 0d8a28a | 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 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
:root {
--bg-color: #060907;
--surface-color: #0f1612;
--surface-light: #18231c;
--surface-glass: rgba(24, 35, 28, 0.7);
--primary-color: #10b981;
--primary-dark: #059669;
--primary-glow: rgba(16, 185, 129, 0.4);
--text-main: #f8fafc;
--text-muted: #94a3b8;
--danger-color: #ef4444;
--danger-glass: rgba(239, 68, 68, 0.2);
--border-color: rgba(255, 255, 255, 0.05);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Outfit', sans-serif;
}
body {
background-color: var(--bg-color);
color: var(--text-main);
min-height: 100vh;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}
.app-container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
min-height: 100vh;
background-color: var(--surface-color);
position: relative;
box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
display: flex;
flex-direction: column;
}
.admin-container {
width: 100%;
min-height: 100vh;
background-color: var(--bg-color);
display: flex;
flex-direction: column;
}
/* Typography elements */
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
letter-spacing: -0.02em;
}
.text-gradient {
background: linear-gradient(135deg, #34d399, #10b981);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
/* Glass UI styles */
.glass-panel {
background: var(--surface-glass);
backdrop-filter: blur(12px);
border: 1px solid var(--border-color);
border-radius: 20px;
}
/* Buttons */
.btn-primary {
background: linear-gradient(135deg, #10b981, #059669);
color: white;
border: none;
padding: 14px 24px;
border-radius: 14px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 8px 24px var(--primary-glow);
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.btn-primary:active {
transform: scale(0.96);
box-shadow: 0 4px 12px var(--primary-glow);
}
.btn-secondary {
background: var(--surface-light);
color: var(--text-main);
border: 1px solid var(--border-color);
padding: 14px 24px;
border-radius: 14px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.btn-secondary:active, .btn-icon:active {
transform: scale(0.96);
}
.btn-icon-circular {
width: 50px;
height: 50px;
border-radius: 50%;
border: none;
display: flex;
align-items: center;
justify-content: center;
background: var(--surface-light);
color: var(--text-main);
cursor: pointer;
transition: all 0.2s;
}
/* Call specific buttons */
.btn-call-accept {
background: #10b981;
color: white;
box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}
.btn-call-reject {
background: #ef4444;
color: white;
box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
}
/* Input Fields */
.input-base {
width: 100%;
background: var(--bg-color);
border: 1px solid var(--border-color);
color: var(--text-main);
padding: 16px;
border-radius: 14px;
font-size: 16px;
outline: none;
transition: all 0.2s;
}
.input-base:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 2px var(--primary-glow);
}
.input-base::placeholder {
color: var(--text-muted);
}
/* Animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-ring {
0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
/* Utilities */
.scroll-hide::-webkit-scrollbar {
display: none;
}
.scroll-hide {
-ms-overflow-style: none;
scrollbar-width: none;
}
.fixed-bottom {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 20px;
background: linear-gradient(to top, var(--surface-color) 70%, transparent);
}
/* Skeleton & Pulse */
.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: .5; }
}
.loading-dots:after {
content: ' .';
animation: dots 1.5s steps(5, end) infinite;
}
@keyframes dots {
0%, 20% { content: ' .'; }
40% { content: ' ..'; }
60% { content: ' ...'; }
80%, 100% { content: ''; }
}
|