Spaces:
Running
Running
| @import "tailwindcss"; | |
| @font-face { | |
| font-family: 'Pretendard'; | |
| src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2') format('woff2'); | |
| font-weight: 100; | |
| font-display: swap; | |
| } | |
| @font-face { | |
| font-family: 'Pretendard'; | |
| src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2') format('woff2'); | |
| font-weight: 200; | |
| font-display: swap; | |
| } | |
| @font-face { | |
| font-family: 'Pretendard'; | |
| src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2') format('woff2'); | |
| font-weight: 300; | |
| font-display: swap; | |
| } | |
| @font-face { | |
| font-family: 'Pretendard'; | |
| src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2') format('woff2'); | |
| font-weight: 400; | |
| font-display: swap; | |
| } | |
| @font-face { | |
| font-family: 'Pretendard'; | |
| src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2') format('woff2'); | |
| font-weight: 500; | |
| font-display: swap; | |
| } | |
| @font-face { | |
| font-family: 'Pretendard'; | |
| src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2') format('woff2'); | |
| font-weight: 600; | |
| font-display: swap; | |
| } | |
| @font-face { | |
| font-family: 'Pretendard'; | |
| src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2') format('woff2'); | |
| font-weight: 700; | |
| font-display: swap; | |
| } | |
| @font-face { | |
| font-family: 'Pretendard'; | |
| src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2') format('woff2'); | |
| font-weight: 800; | |
| font-display: swap; | |
| } | |
| @font-face { | |
| font-family: 'Pretendard'; | |
| src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2') format('woff2'); | |
| font-weight: 900; | |
| font-display: swap; | |
| } | |
| @theme { | |
| --font-sans: "Pretendard", ui-sans-serif, system-ui, sans-serif; | |
| --color-cyan-50: #ecfeff; | |
| --color-cyan-100: #cffafe; | |
| --color-cyan-200: #a5f3fc; | |
| --color-cyan-300: #67e8f9; | |
| --color-cyan-400: #22d3ee; | |
| --color-cyan-500: #06b6d4; | |
| --color-cyan-600: #0891b2; | |
| --color-cyan-700: #0e7490; | |
| --color-cyan-800: #155e75; | |
| --color-cyan-900: #164e63; | |
| } | |
| html { | |
| scroll-behavior: smooth; | |
| } | |
| html, | |
| body { | |
| max-width: 100%; | |
| overflow-x: hidden; | |
| } | |
| body { | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| /* Custom scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #f8fafc; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #e2e8f0; | |
| border-radius: 10px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #cbd5e1; | |
| } | |