Spaces:
Running
Running
File size: 3,353 Bytes
a8d792f 7a0c9ff a8d792f |
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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
/* Geist Font Definitions */
@font-face {
font-family: "Geist";
src: url("/fonts/Geist-Regular.woff2") format("woff2");
font-weight: 400;
font-style: normal;
font-display: block;
}
@font-face {
font-family: "Geist";
src: url("/fonts/Geist-SemiBold.woff2") format("woff2");
font-weight: 600;
font-style: normal;
font-display: block;
}
@font-face {
font-family: "Geist";
src: url("/fonts/Geist-Bold.woff2") format("woff2");
font-weight: 700;
font-style: normal;
font-display: block;
}
@font-face {
font-family: "Geist Mono";
src: url("/fonts/GeistMono-Regular.woff2") format("woff2");
font-weight: 400;
font-style: normal;
font-display: block;
}
@font-face {
font-family: "Geist Mono";
src: url("/fonts/GeistMono-SemiBold.woff2") format("woff2");
font-weight: 600;
font-style: normal;
font-display: block;
}
@font-face {
font-family: "Geist Mono";
src: url("/fonts/GeistMono-Bold.woff2") format("woff2");
font-weight: 700;
font-style: normal;
font-display: block;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 240 5% 7%;
--foreground: 0 0% 98%;
--card: 240 5% 9%;
--card-foreground: 0 0% 98%;
--popover: 240 5% 7%;
--popover-foreground: 0 0% 98%;
--primary: 38 100% 50%;
--primary-foreground: 240 5% 7%;
--secondary: 240 4% 16%;
--secondary-foreground: 0 0% 98%;
--muted: 240 4% 16%;
--muted-foreground: 240 5% 65%;
--accent: 48 99% 56%;
--accent-foreground: 240 5% 7%;
--destructive: 0 72% 51%;
--destructive-foreground: 0 0% 98%;
--border: 240 4% 16%;
--input: 240 4% 16%;
--ring: 38 100% 50%;
--accent-cyan: 180 100% 50%;
--radius: 0.5rem;
}
.light {
--background: 0 0% 100%;
--foreground: 240 10% 3.9%;
--card: 0 0% 100%;
--card-foreground: 240 10% 3.9%;
--popover: 0 0% 100%;
--popover-foreground: 240 10% 3.9%;
--primary: 38 100% 50%;
--primary-foreground: 240 5% 7%;
--secondary: 0 0% 96.1%;
--secondary-foreground: 240 5.9% 10%;
--muted: 0 0% 96.1%;
--muted-foreground: 240 3.8% 46.1%;
--accent: 48 99% 56%;
--accent-foreground: 240 5.9% 10%;
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 0 0% 98%;
--border: 0 0% 89.8%;
--input: 0 0% 89.8%;
--ring: 38 100% 50%;
--accent-cyan: 180 100% 40%;
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
font-feature-settings: "rlig" 1, "calt" 1;
opacity: 0;
transition: opacity 0.3s ease-in-out;
}
body.page-ready {
opacity: 1;
}
body.dark {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32' fill='none' stroke='rgb(255 255 255 / 0.05)'%3e%3cpath d='M0 .5H31.5V32'/%3e%3c/svg%3e");
}
}
@layer utilities {
.text-glitch {
animation: text-glitch 0.3s linear infinite alternate-reverse;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: hsl(var(--background));
}
::-webkit-scrollbar-thumb {
background: hsl(var(--primary) / 0.5);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: hsl(var(--primary));
}
}
|