Update templates/menu.html
Browse files- templates/menu.html +7 -12
templates/menu.html
CHANGED
@@ -11,24 +11,19 @@
|
|
11 |
|
12 |
|
13 |
/* subbu */
|
14 |
-
|
15 |
-
background: linear-gradient(135deg, #
|
16 |
-
color:
|
17 |
-
|
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
|
24 |
-
margin-left:
|
25 |
}
|
26 |
|
27 |
.addbutton .btn:hover {
|
28 |
-
background: linear-gradient(135deg, #
|
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 |
|
|
|
11 |
|
12 |
|
13 |
/* subbu */
|
14 |
+
.addbutton .btn {
|
15 |
+
background: linear-gradient(135deg, #28a745, #006400); /* Gradient green */
|
16 |
+
color: white; /* Make the text color white */
|
17 |
+
border: none; /* Remove the border */
|
|
|
|
|
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, #006400, #28a745); /* Reverse gradient for hover effect */
|
|
|
|
|
|
|
27 |
}
|
28 |
|
29 |
|