Update templates/menu.html
Browse files- templates/menu.html +12 -0
templates/menu.html
CHANGED
@@ -49,7 +49,19 @@
|
|
49 |
.addbutton .btn {
|
50 |
margin-left: 10px; /* Adds some space between button and text */
|
51 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
|
|
|
|
|
|
|
53 |
|
54 |
|
55 |
|
|
|
49 |
.addbutton .btn {
|
50 |
margin-left: 10px; /* Adds some space between button and text */
|
51 |
}
|
52 |
+
.addbutton .btn {
|
53 |
+
background: linear-gradient(135deg, #28a745, #006400); /* Gradient green */
|
54 |
+
color: white; /* Make the text color white */
|
55 |
+
border: none; /* Remove the border */
|
56 |
+
padding: 10px 20px; /* Adjust padding */
|
57 |
+
font-size: 16px; /* Adjust font size */
|
58 |
+
border-radius: 5px; /* Optional: round the corners */
|
59 |
+
transition: background 0.3s ease; /* Add transition effect for hover */
|
60 |
+
}
|
61 |
|
62 |
+
.addbutton .btn:hover {
|
63 |
+
background: linear-gradient(135deg, #006400, #28a745); /* Reverse gradient for hover effect */
|
64 |
+
}
|
65 |
|
66 |
|
67 |
|