2024-11-04 22:55:08 +00:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
|
|
|
|
@layer base {
|
|
|
|
:root {
|
|
|
|
--background: 0 0% 100%;
|
|
|
|
--foreground: 224 71.4% 4.1%;
|
|
|
|
--card: 0 0% 100%;
|
|
|
|
--card-foreground: 224 71.4% 4.1%;
|
|
|
|
--popover: 0 0% 100%;
|
|
|
|
--popover-foreground: 224 71.4% 4.1%;
|
|
|
|
--primary: 220.9 39.3% 11%;
|
|
|
|
--primary-foreground: 210 20% 98%;
|
|
|
|
--secondary: 220 14.3% 95.9%;
|
|
|
|
--secondary-foreground: 220.9 39.3% 11%;
|
|
|
|
--muted: 220 14.3% 95.9%;
|
|
|
|
--muted-foreground: 220 8.9% 46.1%;
|
|
|
|
--accent: 220 14.3% 95.9%;
|
|
|
|
--accent-foreground: 220.9 39.3% 11%;
|
|
|
|
--destructive: 0 84.2% 60.2%;
|
|
|
|
--destructive-foreground: 210 20% 98%;
|
|
|
|
--border: 220 13% 91%;
|
|
|
|
--input: 220 13% 91%;
|
|
|
|
--ring: 224 71.4% 4.1%;
|
|
|
|
--radius: 0.5rem;
|
|
|
|
--chart-1: 12 76% 61%;
|
|
|
|
--chart-2: 173 58% 39%;
|
|
|
|
--chart-3: 197 37% 24%;
|
|
|
|
--chart-4: 43 74% 66%;
|
|
|
|
--chart-5: 27 87% 67%;
|
2024-11-06 22:47:04 +00:00
|
|
|
--expo-out: linear(
|
|
|
|
0 0%,
|
|
|
|
0.1684 2.66%,
|
|
|
|
0.3165 5.49%,
|
|
|
|
0.446 8.52%,
|
|
|
|
0.5581 11.78%,
|
|
|
|
0.6535 15.29%,
|
|
|
|
0.7341 19.11%,
|
|
|
|
0.8011 23.3%,
|
|
|
|
0.8557 27.93%,
|
|
|
|
0.8962 32.68%,
|
|
|
|
0.9283 38.01%,
|
|
|
|
0.9529 44.08%,
|
|
|
|
0.9711 51.14%,
|
|
|
|
0.9833 59.06%,
|
|
|
|
0.9915 68.74%,
|
|
|
|
1 100%
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
::selection {
|
|
|
|
background-color: hsl(var(--accent));
|
|
|
|
color: hsl(var(--foreground));
|
2024-11-04 22:55:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.dark {
|
|
|
|
--background: 224 71.4% 4.1%;
|
|
|
|
--foreground: 210 20% 98%;
|
|
|
|
--card: 224 71.4% 4.1%;
|
|
|
|
--card-foreground: 210 20% 98%;
|
|
|
|
--popover: 224 71.4% 4.1%;
|
|
|
|
--popover-foreground: 210 20% 98%;
|
|
|
|
--primary: 210 20% 98%;
|
|
|
|
--primary-foreground: 220.9 39.3% 11%;
|
|
|
|
--secondary: 215 27.9% 16.9%;
|
|
|
|
--secondary-foreground: 210 20% 98%;
|
|
|
|
--muted: 215 27.9% 16.9%;
|
|
|
|
--muted-foreground: 217.9 10.6% 64.9%;
|
|
|
|
--accent: 215 27.9% 16.9%;
|
|
|
|
--accent-foreground: 210 20% 98%;
|
|
|
|
--destructive: 0 62.8% 30.6%;
|
|
|
|
--destructive-foreground: 210 20% 98%;
|
|
|
|
--border: 215 27.9% 16.9%;
|
|
|
|
--input: 215 27.9% 16.9%;
|
|
|
|
--ring: 216 12.2% 83.9%;
|
|
|
|
--chart-1: 220 70% 50%;
|
|
|
|
--chart-2: 160 60% 45%;
|
|
|
|
--chart-3: 30 80% 55%;
|
|
|
|
--chart-4: 280 65% 60%;
|
|
|
|
--chart-5: 340 75% 55%;
|
|
|
|
}
|
2024-11-06 22:47:04 +00:00
|
|
|
|
|
|
|
::view-transition-group(root) {
|
|
|
|
animation-duration: 0.7bun s;
|
|
|
|
animation-timing-function: var(--expo-out);
|
|
|
|
}
|
|
|
|
|
|
|
|
::view-transition-new(root) {
|
|
|
|
animation-name: reveal-light;
|
|
|
|
}
|
|
|
|
|
|
|
|
::view-transition-old(root),
|
|
|
|
.dark::view-transition-old(root) {
|
|
|
|
animation: none;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
.dark::view-transition-new(root) {
|
|
|
|
animation-name: reveal-dark;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes reveal-dark {
|
|
|
|
from {
|
|
|
|
clip-path: polygon(50% -71%, -50% 71%, -50% 71%, 50% -71%);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
clip-path: polygon(50% -71%, -50% 71%, 50% 171%, 171% 50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes reveal-light {
|
|
|
|
from {
|
|
|
|
clip-path: polygon(171% 50%, 50% 171%, 50% 171%, 171% 50%);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
clip-path: polygon(171% 50%, 50% 171%, -50% 71%, 50% -71%);
|
|
|
|
}
|
|
|
|
}
|
2024-11-04 22:55:08 +00:00
|
|
|
}
|
|
|
|
|
2024-11-06 22:47:04 +00:00
|
|
|
|
|
|
|
|
2024-11-04 22:55:08 +00:00
|
|
|
@layer base {
|
|
|
|
* {
|
|
|
|
@apply border-border;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
@apply bg-background text-foreground;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
* {
|
|
|
|
-ms-overflow-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.glass {
|
|
|
|
backdrop-filter: blur(15px) saturate(100%);
|
|
|
|
-webkit-backdrop-filter: blur(15px) saturate(100%);
|
|
|
|
}
|