This commit is contained in:
2026-01-06 21:17:10 +01:00
parent 85d19cbaad
commit 54050b543a
3 changed files with 352 additions and 183 deletions

View File

@@ -1,168 +1,265 @@
:root {
--background: hsl(0 0% 3.9%);
--foreground: hsl(0 0% 98%);
--card: hsl(0 0% 12%);
--card-foreground: hsl(0 0% 98%);
--popover: hsl(0 0% 3.9%);
--popover-foreground: hsl(0 0% 98%);
--primary: hsl(0 0% 98%);
--primary-foreground: hsl(0 0% 9%);
--secondary: hsl(0 0% 14.9%);
--secondary-foreground: hsl(0 0% 98%);
--muted: hsl(0 0% 14.9%);
--muted-foreground: hsl(0 0% 63.9%);
--accent: hsl(0 0% 14.9%);
--accent-foreground: hsl(0 0% 98%);
--border: hsl(0 0% 14.9%);
--input: hsl(0 0% 14.9%);
--ring: hsl(0 0% 83.1%);
--background: #09090b;
--foreground: #fafafa;
--card: #09090b;
--card-foreground: #fafafa;
--primary: #fafafa;
--primary-foreground: #18181b;
--secondary: #27272a;
--secondary-foreground: #fafafa;
--muted: #27272a;
--muted-foreground: #a1a1aa;
--accent: #27272a;
--accent-foreground: #fafafa;
--border: #27272a;
--input: #27272a;
--ring: #d4d4d8;
--radius: 0.5rem;
}
* {
box-sizing: border-box;
}
body {
background-color: var(--background);
color: var(--foreground);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
margin: 0;
padding: 2rem;
height: 100vh;
overflow: hidden;
}
.container {
max-width: 800px;
margin: 0 auto;
.app-layout {
display: flex;
flex-direction: column;
gap: 1.5rem;
height: 100vh;
width: 100vw;
}
.header {
text-align: center;
}
.header-title {
font-size: 2rem;
font-weight: 700;
letter-spacing: -0.02em;
margin: 0;
}
.header-subtitle {
color: var(--muted-foreground);
font-size: 1rem;
margin-top: 0.25rem;
}
.card {
/* Sidebar */
.sidebar {
width: 300px;
background-color: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 1.5rem;
}
.controls {
border-right: 1px solid var(--border);
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.control-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
padding: 1.5rem;
flex-shrink: 0;
}
.control-group {
.sidebar-header {
margin-bottom: 2.5rem;
}
.brand-wrapper {
display: flex;
align-items: center;
gap: 0.6rem;
}
.brand {
font-size: 1.25rem;
font-weight: 600;
margin: 0;
letter-spacing: -0.02em;
}
.brand-sub {
font-size: 0.75rem;
color: var(--muted-foreground);
margin: 0.2rem 0 0 0;
}
.settings {
display: flex;
flex-direction: column;
gap: 2rem;
flex-grow: 1;
}
.setting-item {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.setting-label {
display: flex;
justify-content: space-between;
align-items: center;
}
label {
font-size: 0.875rem;
font-weight: 500;
}
.input-base {
background-color: var(--background);
border: 1px solid var(--border);
border-radius: calc(var(--radius) - 2px);
color: var(--foreground);
padding: 0.5rem 0.75rem;
height: 2.5rem;
}
select.input-base {
-webkit-appearance: none;
appearance: none;
padding-right: 2rem;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='hsl(0 0% 63.9%)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right 0.5rem center;
background-size: 1em 1em;
}
.generate-action {
border-top: 1px solid var(--border);
padding-top: 1.5rem;
text-align: right;
.value-badge {
font-family: monospace;
font-size: 0.75rem;
background: var(--secondary);
padding: 2px 6px;
border-radius: 4px;
color: var(--muted-foreground);
}
/* Styled Inputs */
.select-input {
background-color: var(--background);
border: 1px solid var(--border);
border-radius: var(--radius);
color: var(--foreground);
padding: 0.5rem;
font-size: 0.875rem;
outline: none;
cursor: pointer;
transition: border-color 0.2s;
}
.select-input:focus {
border-color: var(--ring);
}
/* Custom Slider Styling */
.slider {
-webkit-appearance: none;
width: 100%;
height: 4px;
background: var(--secondary);
border-radius: 2px;
outline: none;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 16px;
height: 16px;
background: var(--primary);
border-radius: 50%;
cursor: pointer;
border: 2px solid var(--background);
box-shadow: 0 0 0 1px var(--border);
}
.slider::-moz-range-thumb {
width: 16px;
height: 16px;
background: var(--primary);
border-radius: 50%;
cursor: pointer;
border: 2px solid var(--background);
box-shadow: 0 0 0 1px var(--border);
}
/* Button */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: calc(var(--radius) - 2px);
width: 100%;
padding: 0.6rem;
border-radius: var(--radius);
font-size: 0.875rem;
font-weight: 600;
padding: 0.5rem 1rem;
transition: all 0.2s;
cursor: pointer;
transition: opacity 0.2s;
border: none;
}
.btn-primary {
background-color: var(--primary);
color: var(--primary-foreground);
}
.btn-primary:hover {
background-color: hsl(0 0% 98% / 0.9);
opacity: 0.9;
}
.editor-wrapper {
position: relative;
padding: 0;
/* Sidebar Footer */
.sidebar-footer {
padding-top: 1rem;
border-top: 1px solid var(--border);
}
.status-indicator {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.75rem;
color: var(--muted-foreground);
}
.status-dot {
width: 6px;
height: 6px;
background-color: #22c55e;
border-radius: 50%;
}
.fetching .status-dot {
background-color: #eab308;
box-shadow: 0 0 8px #eab308;
animation: pulse 1.5s infinite;
}
@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.4; }
100% { opacity: 1; }
}
/* Main Editor Area */
.editor-main {
flex-grow: 1;
padding: 2rem;
display: flex;
justify-content: center;
background-color: var(--background);
}
.editor-container {
width: 100%;
max-width: 800px;
height: 100%;
}
.editor-viewport {
position: relative;
height: 100%;
border: 1px solid var(--border);
border-radius: var(--radius);
background-color: var(--card);
overflow-y: auto;
}
#editor, #suggestion-overlay {
width: 100%;
height: 100%;
padding: 2rem;
font-family: "SF Mono", "Fira Code", monospace;
font-size: 1.1rem;
line-height: 1.8;
border: none;
background: transparent;
white-space: pre-wrap;
word-wrap: break-word;
margin: 0;
box-sizing: border-box;
}
#editor {
position: relative;
z-index: 2;
color: var(--foreground);
outline: none;
resize: none;
}
#suggestion-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-sizing: border-box;
font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
font-size: 1rem;
line-height: 1.7;
background-color: transparent;
border: none;
overflow: hidden;
resize: none;
padding: 1.5rem;
min-height: 300px;
}
#editor {
z-index: 2;
color: var(--foreground);
}
#editor:focus { outline: none; }
#editor::placeholder { color: var(--muted-foreground); }
#suggestion-overlay {
z-index: 1;
color: var(--muted-foreground);
pointer-events: none;
}
.status-bar {
text-align: center;
font-size: 0.8rem;
color: var(--muted-foreground);
display: flex;
gap: 0.5rem;
justify-content: center;
}
#status.fetching {
color: var(--foreground);
}
opacity: 0.5;
}