Elena
commited on
Update app.py
Browse files
app.py
CHANGED
|
@@ -19,13 +19,13 @@ css = """
|
|
| 19 |
font-family: Arial, sans-serif;
|
| 20 |
}
|
| 21 |
.gr-button {
|
| 22 |
-
background-color: #007bff;
|
| 23 |
color: white;
|
| 24 |
border-radius: 5px;
|
| 25 |
font-size: 16px;
|
| 26 |
}
|
| 27 |
.gr-button:hover {
|
| 28 |
-
background-color: #
|
| 29 |
}
|
| 30 |
.gr-textbox, .gr-image {
|
| 31 |
border: 2px dashed #007bff;
|
|
@@ -41,7 +41,7 @@ css = """
|
|
| 41 |
}
|
| 42 |
h1 {
|
| 43 |
font-size: 36px;
|
| 44 |
-
color: #007bff;
|
| 45 |
text-align: center;
|
| 46 |
}
|
| 47 |
p {
|
|
|
|
| 19 |
font-family: Arial, sans-serif;
|
| 20 |
}
|
| 21 |
.gr-button {
|
| 22 |
+
background-color: #007bff; /* Same color as the heading */
|
| 23 |
color: white;
|
| 24 |
border-radius: 5px;
|
| 25 |
font-size: 16px;
|
| 26 |
}
|
| 27 |
.gr-button:hover {
|
| 28 |
+
background-color: #0056b3; /* Slightly darker shade for hover */
|
| 29 |
}
|
| 30 |
.gr-textbox, .gr-image {
|
| 31 |
border: 2px dashed #007bff;
|
|
|
|
| 41 |
}
|
| 42 |
h1 {
|
| 43 |
font-size: 36px;
|
| 44 |
+
color: #007bff; /* Color for heading */
|
| 45 |
text-align: center;
|
| 46 |
}
|
| 47 |
p {
|