From eb0eb26f4cefa4880c895ff017f312e8674f9b73 Mon Sep 17 00:00:00 2001 From: karpathy Date: Sat, 22 Nov 2025 14:27:53 -0800 Subject: v0 --- frontend/src/components/Stage1.css | 65 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 frontend/src/components/Stage1.css (limited to 'frontend/src/components/Stage1.css') diff --git a/frontend/src/components/Stage1.css b/frontend/src/components/Stage1.css new file mode 100644 index 0000000..1f5133e --- /dev/null +++ b/frontend/src/components/Stage1.css @@ -0,0 +1,65 @@ +.stage { + margin: 24px 0; + padding: 20px; + background: #fafafa; + border-radius: 8px; + border: 1px solid #e0e0e0; +} + +.stage-title { + margin: 0 0 16px 0; + color: #333; + font-size: 16px; + font-weight: 600; +} + +.tabs { + display: flex; + gap: 8px; + margin-bottom: 16px; + flex-wrap: wrap; +} + +.tab { + padding: 8px 16px; + background: #ffffff; + border: 1px solid #d0d0d0; + border-radius: 6px 6px 0 0; + color: #666; + cursor: pointer; + font-size: 14px; + transition: all 0.2s; +} + +.tab:hover { + background: #f0f0f0; + color: #333; + border-color: #4a90e2; +} + +.tab.active { + background: #ffffff; + color: #4a90e2; + border-color: #4a90e2; + border-bottom-color: #ffffff; + font-weight: 600; +} + +.tab-content { + background: #ffffff; + padding: 16px; + border-radius: 6px; + border: 1px solid #e0e0e0; +} + +.model-name { + color: #888; + font-size: 12px; + margin-bottom: 12px; + font-family: monospace; +} + +.response-text { + color: #333; + line-height: 1.6; +} -- cgit v1.2.3