nexter / src /index.css
Shinhati2023's picture
Create src/index.css
3c496ba verified
Raw
History Blame Contribute Delete
1.05 kB
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Liquid Glass Custom Utilities */
@layer utilities {
.liquid-glass {
@apply bg-white/40 backdrop-blur-lg border border-white/40 shadow-xl;
}
}
/* Global Mesh/Gradient Background to make the glass effect visible */
body {
margin: 0;
min-height: 100vh;
/* Soft, warm liquid mesh background matching the NEXT theme */
background-color: #fcf4f0;
background-image:
radial-gradient(at 0% 0%, hsla(28,100%,74%,0.4) 0px, transparent 50%),
radial-gradient(at 100% 0%, hsla(349,100%,81%,0.4) 0px, transparent 50%),
radial-gradient(at 100% 100%, hsla(28,100%,74%,0.3) 0px, transparent 50%),
radial-gradient(at 0% 100%, hsla(349,100%,81%,0.3) 0px, transparent 50%);
background-attachment: fixed;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Hide scrollbar for category lists but allow scrolling */
.hide-scrollbar::-webkit-scrollbar {
display: none;
}
.hide-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}