File size: 2,946 Bytes
f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 6ab3bf4 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 b226289 f4866c7 | 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 | /* βββββββββββββββββββββββββββββββββββββββββββββββββββ
RasoSpeak β YC Startup Design System
βββββββββββββββββββββββββββββββββββββββββββββββββββ */
:root {
/* Clean Palette */
--primary: #a33e00;
--primary-container: #ff6600; /* YC Orange */
--secondary: #5d5f5a;
--background: #f9f9f9;
--surface: #ffffff;
--surface-variant: #eeeeee;
--on-surface: #1b1b1b;
--on-surface-variant: #5a4136;
--outline: #8e7164;
--outline-variant: #e3bfb1;
--error: #ba1a1a;
--border-yc: #E0E0E0;
/* Radii */
--radius-sm: 0.25rem;
--radius-md: 0.5rem;
--radius-lg: 0.75rem;
--radius-full: 9999px;
/* Typography */
--font-headline: 'Hanken Grotesk', sans-serif;
--font-body: 'Inter', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
}
/* Global Styles */
body {
font-family: var(--font-body);
background-color: var(--background);
color: var(--on-surface);
}
h1, h2, h3, h4, .font-headline {
font-family: var(--font-headline);
}
.font-mono {
font-family: var(--font-mono);
}
/* Scrollbar */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: var(--outline-variant);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--outline);
}
/* Layout Utilities */
.view {
display: none;
animation: fadeIn 0.3s ease-out;
}
.view.active {
display: block;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(4px); }
to { opacity: 1; transform: translateY(0); }
}
/* Components */
.active-nav {
background-color: var(--primary-container) !important;
color: white !important;
font-weight: bold;
}
.border-yc {
border-color: var(--border-yc);
}
/* Toast */
#toast.show {
opacity: 1;
transform: translate(-50%, 0);
pointer-events: auto;
}
/* Waveform Bars */
.wav-bar {
transition: height 0.1s ease, background 0.3s ease;
}
.wav-bar.delivering {
animation: wavePulse 1.2s infinite ease-in-out;
}
.wav-bar.listening {
animation: wavePulse 0.8s infinite ease-in-out;
}
@keyframes wavePulse {
0%, 100% { transform: scaleY(1); opacity: 0.3; }
50% { transform: scaleY(2); opacity: 0.8; }
}
/* Markdown-like text area */
textarea {
line-height: 1.6;
}
/* Typography Overrides */
.text-label-caps {
letter-spacing: 0.05em;
text-transform: uppercase;
}
/* AMD Badge */
.amd-badge {
background: #000000;
color: #FFFFFF;
padding: 2px 8px;
border-radius: 4px;
font-family: var(--font-mono);
font-size: 10px;
display: inline-flex;
align-items: center;
gap: 6px;
}
.amd-dot {
width: 6px;
height: 6px;
background: #ff6600;
border-radius: 50%;
box-shadow: 0 0 8px #ff6600;
}
|