Spaces:
Sleeping
Sleeping
File size: 843 Bytes
a02272f d390f94 a02272f d390f94 a02272f d390f94 a02272f d390f94 a02272f d390f94 a02272f d390f94 a02272f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | @import "tailwindcss";
@theme {
--font-outfit: var(--font-outfit);
}
body {
background: var(--background);
color: var(--foreground);
font-family: var(--font-outfit), sans-serif;
overflow-x: hidden;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: #000;
}
::-webkit-scrollbar-thumb {
background: #111;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #222;
}
/* Subtle Grid Pattern */
.bg-grid {
background-size: 40px 40px;
background-image:
linear-gradient(to right, #080808 1px, transparent 1px),
linear-gradient(to bottom, #080808 1px, transparent 1px);
}
/* Glow Effect for Minimalist UI */
.glow-subtle {
box-shadow: 0 0 20px rgba(255, 255, 255, 0.03);
}
.glow-accent {
box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}
|