Spaces:
Running
Running
File size: 3,188 Bytes
4755edd | 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 152 153 154 155 156 157 | @import "tailwindcss";
@source "../node_modules/streamdown/dist/*.js";
@theme {
--color-bg: #050814;
--color-bg-soft: rgba(8, 13, 25, 0.72);
--color-panel: rgba(10, 15, 28, 0.68);
--color-panel-strong: rgba(255, 255, 255, 0.12);
--color-line: rgba(255, 255, 255, 0.12);
--color-line-strong: rgba(255, 255, 255, 0.22);
--color-text: #f3f7ff;
--color-text-soft: rgba(243, 247, 255, 0.72);
--color-text-muted: rgba(243, 247, 255, 0.54);
--color-accent: #9de0ff;
--color-accent-strong: #d7f4ff;
--font-body: "Sohne", sans-serif;
--font-mono: "JetBrains Mono", monospace;
--shadow-ambient: 0 28px 80px rgba(2, 6, 17, 0.35);
--animate-fade-in: fade-in 0.5s ease-out both;
}
@font-face {
font-family: "Sohne";
font-style: normal;
font-weight: 400;
src: url("/fonts/Söhne/Söhne-Buch.otf") format("opentype");
}
@font-face {
font-family: "Sohne";
font-style: normal;
font-weight: 300;
src: url("/fonts/Söhne/Söhne-Leicht.otf") format("opentype");
}
@font-face {
font-family: "Sohne";
font-style: normal;
font-weight: 700;
src: url("/fonts/Söhne/Söhne-Kräftig.otf") format("opentype");
}
@font-face {
font-family: "JetBrains Mono";
font-style: normal;
font-weight: 100 800;
src: url("/fonts/JetBrains/JetBrainsMono-VariableFont_wght.ttf") format("truetype");
}
@layer base {
* {
box-sizing: border-box;
}
html,
body,
#root {
min-height: 100%;
height: 100%;
}
html {
background: var(--color-bg);
}
body {
margin: 0;
background: var(--color-bg);
color: var(--color-text);
font-family: var(--font-body);
font-synthesis: none;
overflow: hidden;
text-rendering: optimizeLegibility;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
}
button,
input,
textarea {
color: inherit;
font: inherit;
}
button {
border: 0;
cursor: pointer;
}
* {
scrollbar-width: thin;
scrollbar-color: transparent transparent;
}
*:hover {
scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: transparent;
border-radius: 3px;
}
*:hover::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.15);
}
*:hover::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.28);
}
}
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.progress-fill {
height: 100%;
border-radius: inherit;
background: linear-gradient(90deg, rgba(128, 222, 255, 0.8), rgba(245, 251, 255, 0.98));
box-shadow: 0 0 40px rgba(156, 228, 255, 0.4);
}
@keyframes shimmer {
0%,
40% {
background-position: -200% center;
}
100% {
background-position: 200% center;
}
}
.shimmer {
background-image: linear-gradient(110deg, currentColor 35%, rgba(255, 255, 255, 0.95) 50%, currentColor 65%);
background-size: 200% 100%;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: shimmer 5s ease-in-out infinite;
}
|