38 lines
736 B
CSS
38 lines
736 B
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--font-sans: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
:root {
|
|
font-family: var(--font-sans);
|
|
line-height: 1.5;
|
|
font-weight: 400;
|
|
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
/* Custom Scrollbar for Webkit */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: #cbd5e1;
|
|
border-radius: 4px;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #94a3b8;
|
|
} |