Spaces:
Sleeping
Sleeping
Update static/styles.css
Browse files- static/styles.css +21 -5
static/styles.css
CHANGED
|
@@ -1,17 +1,33 @@
|
|
|
|
|
|
|
|
| 1 |
body {
|
| 2 |
font-family: Arial, sans-serif;
|
| 3 |
-
background-color: #
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
button {
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
background-color: #0078ff;
|
| 10 |
-
color: #fff;
|
| 11 |
border: none;
|
|
|
|
| 12 |
cursor: pointer;
|
|
|
|
| 13 |
}
|
| 14 |
|
| 15 |
button:hover {
|
| 16 |
background-color: #0056b3;
|
| 17 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* styles.css */
|
| 2 |
+
|
| 3 |
body {
|
| 4 |
font-family: Arial, sans-serif;
|
| 5 |
+
background-color: #f8f9fa;
|
| 6 |
+
color: #333;
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
h1, h2 {
|
| 10 |
+
text-align: center;
|
| 11 |
+
color: #444;
|
| 12 |
}
|
| 13 |
|
| 14 |
button {
|
| 15 |
+
background-color: #007bff;
|
| 16 |
+
color: white;
|
|
|
|
|
|
|
| 17 |
border: none;
|
| 18 |
+
padding: 10px 20px;
|
| 19 |
cursor: pointer;
|
| 20 |
+
border-radius: 5px;
|
| 21 |
}
|
| 22 |
|
| 23 |
button:hover {
|
| 24 |
background-color: #0056b3;
|
| 25 |
}
|
| 26 |
+
|
| 27 |
+
.suggestions {
|
| 28 |
+
background-color: #fff;
|
| 29 |
+
border: 1px solid #ddd;
|
| 30 |
+
padding: 10px;
|
| 31 |
+
margin: 10px 0;
|
| 32 |
+
border-radius: 5px;
|
| 33 |
+
}
|