Spaces:
Runtime error
Runtime error
Update templates/index.html
Browse files- templates/index.html +30 -2
templates/index.html
CHANGED
@@ -194,7 +194,7 @@
|
|
194 |
}
|
195 |
|
196 |
/* Settings */
|
197 |
-
.settings {
|
198 |
display: flex;
|
199 |
justify-content: space-between;
|
200 |
align-items: center;
|
@@ -203,7 +203,35 @@
|
|
203 |
box-shadow: 0 2px 5px var(--shadow-color);
|
204 |
position: relative;
|
205 |
z-index: 1000;
|
206 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
|
208 |
.color-picker,
|
209 |
.theme-toggle {
|
|
|
194 |
}
|
195 |
|
196 |
/* Settings */
|
197 |
+
/* .settings {
|
198 |
display: flex;
|
199 |
justify-content: space-between;
|
200 |
align-items: center;
|
|
|
203 |
box-shadow: 0 2px 5px var(--shadow-color);
|
204 |
position: relative;
|
205 |
z-index: 1000;
|
206 |
+
} */
|
207 |
+
.settings {
|
208 |
+
display: flex;
|
209 |
+
justify-content: space-between;
|
210 |
+
align-items: center;
|
211 |
+
padding: 10px;
|
212 |
+
background: #f9fafb;
|
213 |
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
214 |
+
border-radius: 5px;
|
215 |
+
}
|
216 |
+
|
217 |
+
.settings div {
|
218 |
+
margin: 0 10px;
|
219 |
+
}
|
220 |
+
|
221 |
+
.settings label {
|
222 |
+
display: block;
|
223 |
+
font-size: 14px;
|
224 |
+
font-weight: 600;
|
225 |
+
color: #555;
|
226 |
+
}
|
227 |
+
|
228 |
+
.settings select {
|
229 |
+
padding: 5px;
|
230 |
+
font-size: 14px;
|
231 |
+
border: 1px solid #ccc;
|
232 |
+
border-radius: 4px;
|
233 |
+
background: #fff;
|
234 |
+
}
|
235 |
|
236 |
.color-picker,
|
237 |
.theme-toggle {
|