Spaces:
Paused
Paused
File size: 9,034 Bytes
4283ada 2204456 395e9dc 2204456 395e9dc 4283ada 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 395e9dc 2204456 1f4cfcb 2204456 1f4cfcb 2204456 4283ada | 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 214 215 216 217 218 219 220 221 222 223 224 | @tailwind base;
@tailwind components;
@tailwind utilities;
/* โโ AutoTeam Bright v1 ๅ
จๅฑๅบ็บฟ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ */
:root {
color-scheme: light;
--bg-canvas: #fafafa;
--bg-surface: #ffffff;
--bg-surface-hover: #f5f5f5;
--hairline: #e5e5e5;
--hairline-strong: #d4d4d4;
--ink-950: #0a0a0a;
--ink-700: #404040;
--ink-600: #525252;
--ink-500: #737373;
--ink-400: #a3a3a3;
--accent: #4f46e5;
--accent-soft: #eef2ff;
}
html, body {
font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif;
font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11', 'ss01';
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
body {
background-color: var(--bg-canvas);
background-image: none;
color: var(--ink-700);
}
/* ้ซ็บงๆ๏ผfont-numeric tabular,ๆฐๅญๅๅฏน้ฝ */
.font-mono, code, pre, .tabular {
font-variant-numeric: tabular-nums;
}
/* โโ ๅก็้ขๆฟ๏ผๆฟๆขๅ"็ป็้ขๆฟ"่ฏญไน๏ผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ */
.glass {
background: var(--bg-surface);
backdrop-filter: none;
border: 1px solid var(--hairline);
box-shadow:
0 1px 2px 0 rgba(0, 0, 0, 0.04),
0 1px 3px 0 rgba(0, 0, 0, 0.06);
}
.glass-soft {
background: var(--bg-surface);
border: 1px solid var(--hairline);
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
}
/* โโ shimmer (loading row) โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ */
.shimmer-bg {
background: linear-gradient(90deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.08) 50%, rgba(0,0,0,0.03) 100%);
background-size: 200% 100%;
animation: shimmer 2.4s ease-in-out infinite;
}
/* โโ ่ก hover ้ซไบฎ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ */
.row-hoverable {
position: relative;
transition: background-color 180ms ease, transform 180ms ease;
}
.row-hoverable::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(180deg, transparent, rgba(79, 70, 229, 0.5), transparent);
opacity: 0;
transition: opacity 220ms ease;
}
.row-hoverable:hover::before {
opacity: 1;
}
.row-hoverable:hover {
background-color: var(--bg-surface-hover);
}
/* GRACE ๅ่ฎกๆถ < 7d ้ช็ */
@keyframes graceUrgent {
0%, 100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
50% { box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.18); }
}
.grace-urgent { animation: graceUrgent 2.2s ease-in-out infinite; }
/* ๆปๅจๆก๏ผๆต
่ฒ็๏ผ */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.12);
border-radius: 8px;
border: 2px solid transparent;
background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(0, 0, 0, 0.20);
background-clip: padding-box;
border: 2px solid transparent;
}
#app { position: relative; z-index: 1; }
/* hover ๆฌๅ + ๅ
้ดๅฝฑ */
.lift-hover { transition: transform 180ms cubic-bezier(0.22,1,0.36,1), box-shadow 180ms ease; }
.lift-hover:hover:not(:disabled) {
transform: translateY(-1px);
box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
}
.lift-hover:active:not(:disabled) { transform: translateY(0); }
/* focus ring (indigo) */
.focus-ring:focus-visible {
outline: none;
box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.40), 0 0 0 4px rgba(79, 70, 229, 0.15);
}
/* โโ ่ทฏ็ฑๅๆข่ฟๆธก (App.vue Transition name="page") โโโโโโโโโโโโโโโโโโ */
.page-enter-from { opacity: 0; transform: translateY(4px); }
.page-enter-active { transition: opacity 180ms cubic-bezier(0.22, 1, 0.36, 1), transform 180ms cubic-bezier(0.22, 1, 0.36, 1); }
.page-enter-to { opacity: 1; transform: translateY(0); }
.page-leave-from { opacity: 1; transform: translateY(0); }
.page-leave-active { transition: opacity 120ms ease-in, transform 120ms ease-in; }
.page-leave-to { opacity: 0; transform: translateY(-2px); }
/* โโ ๆธๅๆ้ฎไธ็ๅๆฏ่ฒๅบๅฎ๏ผ็ป่ฟๆงๆทฑ่ฒๅ
ผๅฎนๅฑ๏ผโโโโโโโโ */
.text-on-accent { color: #ffffff !important; }
/* โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
* ยง Compat Layer โ ๆงๆทฑ่ฒ utility โ ๆไบฎ็ญไปทๅผ
* ้จๅๅๅฒ็ปไปถไป็กฌ็ผ็ text-gray-X / bg-white/[0.0X] / border-white/[X]ใ
* ็ปไธๅจๆญคไธๆฌกๆง็ฟป่ฝฌ,้ฟๅ
ๆ ๅ
ณ้กต้ขๅจ่ฟ็งปไธญ็ ด็ใ
* ๆธๅๆ้ฎ็ญ้่ฆๅบๅฎ้ซๅฏนๆฏๅๆฏ็ๅ
็ด ่ฏทไฝฟ็จ .text-on-accentใ
* โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ */
@layer utilities {
/* ๆๅญ่ฒ็ฟป่ฝฌ */
.text-gray-100 { color: #171717; }
.text-gray-200 { color: #262626; }
.text-gray-300 { color: #404040; }
.text-gray-400 { color: #525252; }
.text-gray-500 { color: #737373; }
.text-gray-600 { color: #a3a3a3; }
.text-gray-700 { color: #d4d4d4; }
.hover\:text-gray-100:hover { color: #171717; }
.hover\:text-gray-200:hover { color: #262626; }
.hover\:text-gray-300:hover { color: #404040; }
/* ๅ้ๆ็ฝๅบ โ ๅ้ๆ้ปๅบ */
.bg-white\/\[0\.02\] { background-color: rgba(0,0,0,0.02); }
.bg-white\/\[0\.03\] { background-color: rgba(0,0,0,0.03); }
.bg-white\/\[0\.04\] { background-color: rgba(0,0,0,0.04); }
.bg-white\/\[0\.05\] { background-color: rgba(0,0,0,0.05); }
.bg-white\/\[0\.06\] { background-color: rgba(0,0,0,0.05); }
.bg-white\/\[0\.07\] { background-color: rgba(0,0,0,0.06); }
.bg-white\/\[0\.08\] { background-color: rgba(0,0,0,0.06); }
.bg-white\/\[0\.10\] { background-color: rgba(0,0,0,0.07); }
.bg-white\/5 { background-color: rgba(0,0,0,0.04); }
.bg-white\/10 { background-color: rgba(0,0,0,0.06); }
.hover\:bg-white\/\[0\.04\]:hover { background-color: rgba(0,0,0,0.04); }
.hover\:bg-white\/\[0\.06\]:hover { background-color: rgba(0,0,0,0.05); }
.hover\:bg-white\/\[0\.07\]:hover { background-color: rgba(0,0,0,0.06); }
.hover\:bg-white\/\[0\.10\]:hover { background-color: rgba(0,0,0,0.07); }
/* gray-700/800/900 ็ฐ้ถ๏ผSettings ็ญ็ปไปถ็กฌ็ผ็ ๆทฑ่ฒ input๏ผโ ๆต
็ฐ */
.bg-gray-700 { background-color: #ebebeb; }
.hover\:bg-gray-700:hover { background-color: #e5e5e5; }
.disabled\:bg-gray-700:disabled { background-color: #f5f5f5; }
.disabled\:hover\:bg-gray-700:disabled:hover { background-color: #f5f5f5; }
.border-gray-600 { border-color: #d4d4d4; }
.border-gray-700 { border-color: #d4d4d4; }
.border-gray-800 { border-color: #e5e5e5; }
.border-gray-900 { border-color: #e5e5e5; }
/* border-white/X โ hairline */
.border-white\/\[0\.04\] { border-color: rgba(0,0,0,0.06); }
.border-white\/\[0\.05\] { border-color: rgba(0,0,0,0.06); }
.border-white\/\[0\.06\] { border-color: rgba(0,0,0,0.07); }
.border-white\/\[0\.08\] { border-color: rgba(0,0,0,0.08); }
.border-white\/\[0\.10\] { border-color: rgba(0,0,0,0.10); }
.border-white\/5 { border-color: rgba(0,0,0,0.06); }
.border-white\/10 { border-color: rgba(0,0,0,0.10); }
.border-white\/20 { border-color: rgba(0,0,0,0.15); }
.hover\:border-white\/20:hover { border-color: rgba(0,0,0,0.15); }
/* placeholder */
.placeholder\:text-gray-600::placeholder { color: #a3a3a3; }
.placeholder\:text-gray-500::placeholder { color: #a3a3a3; }
/* tone-300/200 ๆๅญ๏ผๆทฑ่ฒไธป้ข้็ๆไบฎๆ๏ผโ tone-700/800 (light ไธๆดๆ่ฏป) */
.text-emerald-100, .text-emerald-200 { color: #065f46; }
.text-emerald-300 { color: #047857; }
.text-amber-100, .text-amber-200 { color: #92400e; }
.text-amber-300 { color: #b45309; }
.text-rose-100, .text-rose-200 { color: #9f1239; }
.text-rose-300 { color: #be123c; }
.text-orange-200 { color: #9a3412; }
.text-orange-300 { color: #c2410c; }
.text-indigo-100, .text-indigo-200 { color: #3730a3; }
.text-indigo-300 { color: #4338ca; }
.text-blue-200 { color: #1e3a8a; }
.text-blue-300 { color: #1d4ed8; }
.text-yellow-200 { color: #854d0e; }
.text-yellow-300 { color: #a16207; }
.text-cyan-100, .text-cyan-200 { color: #155e75; }
.text-cyan-300 { color: #0e7490; }
.text-sky-100, .text-sky-200 { color: #0c4a6e; }
.text-sky-300 { color: #0369a1; }
.text-slate-300 { color: #475569; }
.text-slate-400 { color: #64748b; }
.text-slate-500 { color: #64748b; }
.text-red-300 { color: #b91c1c; }
.hover\:text-rose-200:hover { color: #9f1239; }
.hover\:text-rose-300:hover { color: #be123c; }
.hover\:text-emerald-200:hover { color: #065f46; }
.hover\:text-amber-200:hover { color: #92400e; }
}
|