| |
| ::-webkit-scrollbar { |
| width: 8px; |
| height: 8px; |
| } |
| ::-webkit-scrollbar-track { |
| background: #F0EFEA; |
| } |
| ::-webkit-scrollbar-thumb { |
| background: #E8E3D8; |
| border-radius: 4px; |
| } |
| ::-webkit-scrollbar-thumb:hover { |
| background: #1A1A1A20; |
| } |
|
|
| |
| .glass-panel { |
| background: rgba(255, 255, 255, 0.8); |
| backdrop-filter: blur(12px); |
| -webkit-backdrop-filter: blur(12px); |
| border: 1px solid rgba(26, 26, 26, 0.06); |
| } |
|
|
| |
| @keyframes fadeIn { |
| from { opacity: 0; } |
| to { opacity: 1; } |
| } |
|
|
| @keyframes slideUp { |
| from { opacity: 0; transform: translateY(20px); } |
| to { opacity: 1; transform: translateY(0); } |
| } |
|
|
| |
| .reveal { |
| opacity: 0; |
| transform: translateY(24px); |
| transition: all 0.6s ease-out; |
| } |
| .reveal.active { |
| opacity: 1; |
| transform: translateY(0); |
| } |
|
|
| |
| .typing-cursor::after { |
| content: 'β'; |
| animation: blink 1s step-start infinite; |
| color: #F6EB21; |
| margin-left: 2px; |
| } |
|
|
| @keyframes blink { |
| 50% { opacity: 0; } |
| } |
|
|
| |
| .font-mono { |
| font-family: 'JetBrains Mono', monospace; |
| } |
|
|
| |
| .suite-chip { |
| user-select: none; |
| } |
|
|
| |
| .bar-animate { |
| transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1); |
| } |
|
|
| |
| ::selection { |
| background: rgba(246, 235, 33, 0.25); |
| color: #1A1A1A; |
| } |