Spaces:
Running
Running
/* Custom CSS for OpenRouter AI Vision Interface */ | |
/* Main container styling */ | |
body { | |
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; | |
background-color: #f7f7f7; | |
} | |
/* Header styling */ | |
h1 { | |
color: #2a2a2a; | |
font-weight: 700; | |
margin-bottom: 0.5rem; | |
} | |
/* Button styling */ | |
button.primary { | |
background-color: #2563eb; | |
color: white; | |
border: none; | |
padding: 0.5rem 1rem; | |
border-radius: 0.375rem; | |
font-weight: 500; | |
transition: background-color 0.2s; | |
} | |
button.primary:hover { | |
background-color: #1d4ed8; | |
} | |
/* Input container styling */ | |
.input-container { | |
background-color: white; | |
border-radius: 0.5rem; | |
padding: 1.5rem; | |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); | |
} | |
/* Output container styling */ | |
.output-container { | |
background-color: white; | |
border-radius: 0.5rem; | |
padding: 1.5rem; | |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); | |
min-height: 200px; | |
} | |
/* Model dropdown styling */ | |
select { | |
border: 1px solid #e2e8f0; | |
border-radius: 0.375rem; | |
padding: 0.5rem; | |
width: 100%; | |
background-color: white; | |
} | |
/* Image upload area styling */ | |
.image-upload-container { | |
border: 2px dashed #cbd5e1; | |
border-radius: 0.5rem; | |
padding: 2rem; | |
text-align: center; | |
background-color: #f8fafc; | |
transition: border-color 0.2s; | |
} | |
.image-upload-container:hover { | |
border-color: #94a3b8; | |
} |