Spaces:
Sleeping
Sleeping
Update templates/menu.html
Browse files- templates/menu.html +5 -5
templates/menu.html
CHANGED
@@ -41,7 +41,7 @@
|
|
41 |
font-size: 0.9rem;
|
42 |
border-radius: 20px;
|
43 |
width: 100px;
|
44 |
-
background-color: #
|
45 |
border-color: #28a745;
|
46 |
}
|
47 |
.btn-primary:hover {
|
@@ -61,7 +61,7 @@
|
|
61 |
z-index: 999;
|
62 |
}
|
63 |
.view-cart-button {
|
64 |
-
background-color: #
|
65 |
color: #fff;
|
66 |
padding: 10px 20px;
|
67 |
border-radius: 50px;
|
@@ -146,7 +146,7 @@ form.text-center.mb-4 {
|
|
146 |
left: 0;
|
147 |
width: 100%;
|
148 |
z-index: 1000; /* Ensures it stays on top of other elements */
|
149 |
-
background-color: #
|
150 |
color: white;
|
151 |
padding: 15px;
|
152 |
display: flex;
|
@@ -156,7 +156,7 @@ form.text-center.mb-4 {
|
|
156 |
/* Style for customization sections */
|
157 |
.addon-section {
|
158 |
background-color: #f8f9fa; /* Light gray background */
|
159 |
-
border: 2px solid #
|
160 |
border-radius: 8px;
|
161 |
padding: 12px;
|
162 |
margin-bottom: 15px; /* Spacing between sections */
|
@@ -326,7 +326,7 @@ form.text-center.mb-4 {
|
|
326 |
<p class="card-text">${{ item.Price__c }}</p>
|
327 |
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#itemModal"
|
328 |
onclick="showItemDetails('{{ item.Name }}', '{{ item.Price__c }}', '{{ item.Image2__c }}', '{{ item.Description__c }}', '{{ item.Section__c }}','{{ selected_category }}')">
|
329 |
-
Add
|
330 |
</button>
|
331 |
</div>
|
332 |
</div>
|
|
|
41 |
font-size: 0.9rem;
|
42 |
border-radius: 20px;
|
43 |
width: 100px;
|
44 |
+
background-color: #ff6b35; /* Updated button background color */
|
45 |
border-color: #28a745;
|
46 |
}
|
47 |
.btn-primary:hover {
|
|
|
61 |
z-index: 999;
|
62 |
}
|
63 |
.view-cart-button {
|
64 |
+
background-color: #ff6b35; /* Updated View Cart button background color */
|
65 |
color: #fff;
|
66 |
padding: 10px 20px;
|
67 |
border-radius: 50px;
|
|
|
146 |
left: 0;
|
147 |
width: 100%;
|
148 |
z-index: 1000; /* Ensures it stays on top of other elements */
|
149 |
+
background-color: #ff6b35; /* Updated header background */
|
150 |
color: white;
|
151 |
padding: 15px;
|
152 |
display: flex;
|
|
|
156 |
/* Style for customization sections */
|
157 |
.addon-section {
|
158 |
background-color: #f8f9fa; /* Light gray background */
|
159 |
+
border: 2px solid #ff6b35; /* Border color */
|
160 |
border-radius: 8px;
|
161 |
padding: 12px;
|
162 |
margin-bottom: 15px; /* Spacing between sections */
|
|
|
326 |
<p class="card-text">${{ item.Price__c }}</p>
|
327 |
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#itemModal"
|
328 |
onclick="showItemDetails('{{ item.Name }}', '{{ item.Price__c }}', '{{ item.Image2__c }}', '{{ item.Description__c }}', '{{ item.Section__c }}','{{ selected_category }}')">
|
329 |
+
Add
|
330 |
</button>
|
331 |
</div>
|
332 |
</div>
|