File size: 1,760 Bytes
09de243 9bd4a57 09de243 7d63cce 09de243 |
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 70 71 72 73 74 75 76 77 78 79 80 |
/* Base styles */
.stApp {
background: linear-gradient(135deg, #f5f7fa 0%, #e4e7f4 100%);
background-attachment: fixed;
}
/* Header styling */
.header {
text-align: center;
padding: 1.5rem;
background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
border-radius: 10px;
margin-bottom: 2rem;
color: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
.header p {
font-size: 1.1rem;
opacity: 0.9;
}
/* Text area styling */
textarea {
border-radius: 12px !important;
padding: 1rem !important;
font-size: 1.1rem !important;
border: 2px solid #4b6cb7 !important;
}
/* Button styling */
button {
border-radius: 12px !important;
padding: 0.75rem 1.5rem !important;
font-weight: bold !important;
font-size: 1.1rem !important;
background: linear-gradient(90deg, #ff7e5f 0%, #feb47b 100%) !important;
border: none !important;
transition: all 0.3s ease !important;
}
button:hover {
transform: scale(1.05) !important;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2) !important;
}
/* Card styling */
.stExpander {
background: white !important;
border-radius: 12px !important;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
border: none !important;
padding: 1rem !important;
}
/* Spinner styling */
.stSpinner > div {
border-top-color: #4b6cb7 !important;
}
/* Image styling */
.stImage > div > img {
border-radius: 12px !important;
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
border: 3px solid white !important;
}
/* Footer styling */
footer {
text-align: center;
padding: 1rem;
margin-top: 2rem;
color: #6c757d;
font-size: 0.9rem;
} |