Spaces:
Sleeping
Sleeping
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| body { | |
| margin: 0; | |
| font-family: 'Noto Sans SC', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', | |
| 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', | |
| sans-serif; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| background-color: #f9fafb; | |
| } | |
| .custom-scrollbar::-webkit-scrollbar { | |
| width: 6px; | |
| height: 6px; | |
| } | |
| .custom-scrollbar::-webkit-scrollbar-track { | |
| background: transparent; | |
| } | |
| .custom-scrollbar::-webkit-scrollbar-thumb { | |
| background-color: rgba(156, 163, 175, 0.5); | |
| border-radius: 3px; | |
| } | |
| .perspective-1000 { | |
| perspective: 1000px; | |
| } | |
| .transform-style-3d { | |
| transform-style: preserve-3d; | |
| } | |
| .backface-hidden { | |
| backface-visibility: hidden; | |
| } | |
| .rotate-y-180 { | |
| transform: rotateY(180deg); | |
| } | |
| .auto-rows-fr { | |
| grid-auto-rows: 1fr; | |
| } | |