Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -115,39 +115,45 @@ def main():
|
|
| 115 |
}
|
| 116 |
|
| 117 |
.stApp {
|
| 118 |
-
background-color: #ffffff;
|
| 119 |
}
|
| 120 |
|
| 121 |
.main-title {
|
| 122 |
-
font-size: 2.5rem;
|
| 123 |
-
font-weight: 600;
|
| 124 |
-
color: #1a1a1a;
|
| 125 |
text-align: center;
|
| 126 |
margin-bottom: 0.5rem;
|
| 127 |
padding-top: 1rem;
|
| 128 |
}
|
| 129 |
|
| 130 |
.subtitle {
|
| 131 |
-
font-size: 1rem;
|
| 132 |
-
color: #666666;
|
| 133 |
text-align: center;
|
| 134 |
margin-bottom: 2rem;
|
| 135 |
}
|
| 136 |
|
| 137 |
.stTextInput > div > div > input {
|
| 138 |
-
border: 1px solid #e0e0e0;
|
| 139 |
border-radius: 8px;
|
| 140 |
padding: 0.75rem 1rem;
|
| 141 |
font-size: 1rem;
|
|
|
|
|
|
|
| 142 |
}
|
| 143 |
|
| 144 |
.stTextInput > div > div > input:focus {
|
| 145 |
-
border-color: #4a90d9;
|
| 146 |
box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.1);
|
| 147 |
}
|
| 148 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 149 |
.answer-container {
|
| 150 |
-
background-color: #fafafa;
|
| 151 |
border: 1px solid #e8e8e8;
|
| 152 |
border-radius: 10px;
|
| 153 |
padding: 1.5rem;
|
|
@@ -155,17 +161,17 @@ def main():
|
|
| 155 |
}
|
| 156 |
|
| 157 |
.answer-label {
|
| 158 |
-
font-size: 0.85rem;
|
| 159 |
-
font-weight: 600;
|
| 160 |
-
color: #888888;
|
| 161 |
text-transform: uppercase;
|
| 162 |
letter-spacing: 0.5px;
|
| 163 |
margin-bottom: 0.75rem;
|
| 164 |
}
|
| 165 |
|
| 166 |
.answer-text {
|
| 167 |
-
font-size: 1rem;
|
| 168 |
-
color: #333333;
|
| 169 |
line-height: 1.7;
|
| 170 |
}
|
| 171 |
|
|
@@ -173,8 +179,8 @@ def main():
|
|
| 173 |
display: inline-flex;
|
| 174 |
align-items: center;
|
| 175 |
gap: 0.5rem;
|
| 176 |
-
background-color: #f0f9f4;
|
| 177 |
-
color: #166534;
|
| 178 |
padding: 0.5rem 1rem;
|
| 179 |
border-radius: 20px;
|
| 180 |
font-size: 0.9rem;
|
|
@@ -185,13 +191,13 @@ def main():
|
|
| 185 |
.status-dot {
|
| 186 |
width: 8px;
|
| 187 |
height: 8px;
|
| 188 |
-
background-color: #22c55e;
|
| 189 |
border-radius: 50%;
|
| 190 |
}
|
| 191 |
|
| 192 |
.stTextInput label {
|
| 193 |
-
font-size: 0.95rem;
|
| 194 |
-
color: #444444;
|
| 195 |
font-weight: 500;
|
| 196 |
margin-bottom: 0.5rem;
|
| 197 |
}
|
|
|
|
| 115 |
}
|
| 116 |
|
| 117 |
.stApp {
|
| 118 |
+
background-color: #ffffff !important;
|
| 119 |
}
|
| 120 |
|
| 121 |
.main-title {
|
| 122 |
+
font-size: 2.5rem !important;
|
| 123 |
+
font-weight: 600 !important;
|
| 124 |
+
color: #1a1a1a !important;
|
| 125 |
text-align: center;
|
| 126 |
margin-bottom: 0.5rem;
|
| 127 |
padding-top: 1rem;
|
| 128 |
}
|
| 129 |
|
| 130 |
.subtitle {
|
| 131 |
+
font-size: 1rem !important;
|
| 132 |
+
color: #666666 !important;
|
| 133 |
text-align: center;
|
| 134 |
margin-bottom: 2rem;
|
| 135 |
}
|
| 136 |
|
| 137 |
.stTextInput > div > div > input {
|
| 138 |
+
border: 1px solid #e0e0e0 !important;
|
| 139 |
border-radius: 8px;
|
| 140 |
padding: 0.75rem 1rem;
|
| 141 |
font-size: 1rem;
|
| 142 |
+
background-color: #ffffff !important;
|
| 143 |
+
color: #333333 !important;
|
| 144 |
}
|
| 145 |
|
| 146 |
.stTextInput > div > div > input:focus {
|
| 147 |
+
border-color: #4a90d9 !important;
|
| 148 |
box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.1);
|
| 149 |
}
|
| 150 |
|
| 151 |
+
.stTextInput > div > div > input::placeholder {
|
| 152 |
+
color: #999999 !important;
|
| 153 |
+
}
|
| 154 |
+
|
| 155 |
.answer-container {
|
| 156 |
+
background-color: #fafafa !important;
|
| 157 |
border: 1px solid #e8e8e8;
|
| 158 |
border-radius: 10px;
|
| 159 |
padding: 1.5rem;
|
|
|
|
| 161 |
}
|
| 162 |
|
| 163 |
.answer-label {
|
| 164 |
+
font-size: 0.85rem !important;
|
| 165 |
+
font-weight: 600 !important;
|
| 166 |
+
color: #888888 !important;
|
| 167 |
text-transform: uppercase;
|
| 168 |
letter-spacing: 0.5px;
|
| 169 |
margin-bottom: 0.75rem;
|
| 170 |
}
|
| 171 |
|
| 172 |
.answer-text {
|
| 173 |
+
font-size: 1rem !important;
|
| 174 |
+
color: #333333 !important;
|
| 175 |
line-height: 1.7;
|
| 176 |
}
|
| 177 |
|
|
|
|
| 179 |
display: inline-flex;
|
| 180 |
align-items: center;
|
| 181 |
gap: 0.5rem;
|
| 182 |
+
background-color: #f0f9f4 !important;
|
| 183 |
+
color: #166534 !important;
|
| 184 |
padding: 0.5rem 1rem;
|
| 185 |
border-radius: 20px;
|
| 186 |
font-size: 0.9rem;
|
|
|
|
| 191 |
.status-dot {
|
| 192 |
width: 8px;
|
| 193 |
height: 8px;
|
| 194 |
+
background-color: #22c55e !important;
|
| 195 |
border-radius: 50%;
|
| 196 |
}
|
| 197 |
|
| 198 |
.stTextInput label {
|
| 199 |
+
font-size: 0.95rem !important;
|
| 200 |
+
color: #444444 !important;
|
| 201 |
font-weight: 500;
|
| 202 |
margin-bottom: 0.5rem;
|
| 203 |
}
|