diff options
Diffstat (limited to 'frontend/src/components/Stage1.css')
| -rw-r--r-- | frontend/src/components/Stage1.css | 65 |
1 files changed, 65 insertions, 0 deletions
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; +} |
