Spaces:
Sleeping
Sleeping
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| /* Base typography — Instrument Sans loaded via Google Fonts in index.html */ | |
| @layer base { | |
| html { | |
| font-family: "Instrument Sans", sans-serif; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| body { | |
| font-weight: 400; | |
| line-height: 1.6; | |
| color: #1C2942; | |
| } | |
| } | |
| /* Skeleton loading dots animation */ | |
| @keyframes pulse { | |
| 0%, 100% { | |
| opacity: 0.4; | |
| transform: scale(0.8); | |
| } | |
| 50% { | |
| opacity: 1; | |
| transform: scale(1); | |
| } | |
| } | |