Spaces:
Running
Running
File size: 1,407 Bytes
25a1f05 |
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 |
/* 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;
} |