Update templates/menu.html
Browse files- templates/menu.html +13 -7
templates/menu.html
CHANGED
|
@@ -11,22 +11,28 @@
|
|
| 11 |
|
| 12 |
|
| 13 |
/* subbu */
|
| 14 |
-
|
| 15 |
-
background: linear-gradient(135deg, #
|
| 16 |
-
color:
|
| 17 |
-
|
|
|
|
|
|
|
| 18 |
padding: 6px 15px; /* Smaller padding */
|
| 19 |
font-size: 14px; /* Smaller font size */
|
| 20 |
border-radius: 5px; /* Optional: round the corners */
|
| 21 |
-
transition: background 0.3s ease; /* Add transition effect for hover */
|
| 22 |
-
margin-left:10px;
|
| 23 |
}
|
| 24 |
|
| 25 |
.addbutton .btn:hover {
|
| 26 |
-
background: linear-gradient(135deg, #
|
|
|
|
|
|
|
|
|
|
| 27 |
}
|
| 28 |
|
| 29 |
|
|
|
|
| 30 |
.customisable-text {
|
| 31 |
color: #28a745; /* Same color as the "ADD" button */
|
| 32 |
font-size: 12px; /* Same font size as the "ADD" button */
|
|
|
|
| 11 |
|
| 12 |
|
| 13 |
/* subbu */
|
| 14 |
+
.addbutton .btn {
|
| 15 |
+
background: linear-gradient(135deg, #ffffff, #f0f0f0); /* Gradient white background */
|
| 16 |
+
color: transparent; /* Make text color transparent */
|
| 17 |
+
background-clip: text; /* Apply the gradient to the text */
|
| 18 |
+
-webkit-background-clip: text; /* For Safari compatibility */
|
| 19 |
+
border: 1px solid #90ee90; /* Light green border */
|
| 20 |
padding: 6px 15px; /* Smaller padding */
|
| 21 |
font-size: 14px; /* Smaller font size */
|
| 22 |
border-radius: 5px; /* Optional: round the corners */
|
| 23 |
+
transition: background 0.3s ease, border-color 0.3s ease; /* Add transition effect for hover */
|
| 24 |
+
margin-left: 10px; /* Margin for positioning */
|
| 25 |
}
|
| 26 |
|
| 27 |
.addbutton .btn:hover {
|
| 28 |
+
background: linear-gradient(135deg, #f0f0f0, #ffffff); /* Reverse gradient for hover effect */
|
| 29 |
+
border-color: #28a745; /* Darker green border on hover */
|
| 30 |
+
background-clip: text; /* Ensure the gradient is clipped to the text on hover */
|
| 31 |
+
-webkit-background-clip: text; /* Safari compatibility */
|
| 32 |
}
|
| 33 |
|
| 34 |
|
| 35 |
+
|
| 36 |
.customisable-text {
|
| 37 |
color: #28a745; /* Same color as the "ADD" button */
|
| 38 |
font-size: 12px; /* Same font size as the "ADD" button */
|