Spaces:
Sleeping
Sleeping
Update frontend/webui/css/style.css
Browse files- frontend/webui/css/style.css +46 -10
frontend/webui/css/style.css
CHANGED
|
@@ -1,22 +1,58 @@
|
|
| 1 |
footer {
|
| 2 |
-
visibility: hidden
|
| 3 |
}
|
| 4 |
|
|
|
|
| 5 |
#generate_button {
|
| 6 |
-
color:
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
}
|
| 11 |
|
|
|
|
| 12 |
#save_button {
|
| 13 |
-
color:
|
| 14 |
-
|
| 15 |
-
|
| 16 |
width: 200px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
}
|
| 18 |
|
| 19 |
-
#
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
footer {
|
| 2 |
+
visibility: hidden; /* If you want completely removed, consider display: none; */
|
| 3 |
}
|
| 4 |
|
| 5 |
+
/* Generate Button Styling */
|
| 6 |
#generate_button {
|
| 7 |
+
color: #fff;
|
| 8 |
+
background: #2563eb; /* Nice blue */
|
| 9 |
+
border: 2px solid #1e40af; /* Darker blue border */
|
| 10 |
+
padding: 12px 30px;
|
| 11 |
+
font-weight: 600;
|
| 12 |
+
border-radius: 8px;
|
| 13 |
+
cursor: pointer;
|
| 14 |
+
transition: background-color 0.3s ease, border-color 0.3s ease;
|
| 15 |
+
box-shadow: 0 4px 10px rgba(37, 99, 235, 0.5);
|
| 16 |
+
}
|
| 17 |
|
| 18 |
+
#generate_button:hover,
|
| 19 |
+
#generate_button:focus {
|
| 20 |
+
background: #1e40af; /* Darker blue on hover */
|
| 21 |
+
border-color: #1a3a9a;
|
| 22 |
+
outline: none;
|
| 23 |
}
|
| 24 |
|
| 25 |
+
/* Save Button Styling */
|
| 26 |
#save_button {
|
| 27 |
+
color: #fff;
|
| 28 |
+
background: #01b97c; /* Fresh green */
|
| 29 |
+
border: 2px solid #017a50; /* Dark green border */
|
| 30 |
width: 200px;
|
| 31 |
+
padding: 12px 0;
|
| 32 |
+
font-weight: 600;
|
| 33 |
+
border-radius: 8px;
|
| 34 |
+
cursor: pointer;
|
| 35 |
+
transition: background-color 0.3s ease, border-color 0.3s ease;
|
| 36 |
+
box-shadow: 0 4px 10px rgba(1, 185, 124, 0.5);
|
| 37 |
+
text-align: center;
|
| 38 |
}
|
| 39 |
|
| 40 |
+
#save_button:hover,
|
| 41 |
+
#save_button:focus {
|
| 42 |
+
background: #017a50; /* Darker green on hover */
|
| 43 |
+
border-color: #015d3b;
|
| 44 |
+
outline: none;
|
| 45 |
+
}
|
| 46 |
|
| 47 |
+
/* Settings Header Styling */
|
| 48 |
+
#settings_header {
|
| 49 |
+
background: rgb(245, 105, 105); /* Slightly softer red */
|
| 50 |
+
background: linear-gradient(90deg, #f56969, #e94e4e);
|
| 51 |
+
padding: 15px 20px;
|
| 52 |
+
border-radius: 8px 8px 0 0;
|
| 53 |
+
color: white;
|
| 54 |
+
font-weight: 700;
|
| 55 |
+
font-size: 1.2rem;
|
| 56 |
+
box-shadow: 0 4px 12px rgba(245, 105, 105, 0.5);
|
| 57 |
+
user-select: none;
|
| 58 |
+
}
|