DSatishchandra commited on
Commit
ccfa93f
·
verified ·
1 Parent(s): 978a995

Update templates/menu.html

Browse files
Files changed (1) hide show
  1. templates/menu.html +16 -0
templates/menu.html CHANGED
@@ -207,6 +207,7 @@ h1.text-center {
207
  border-radius: 8px;
208
  padding: 12px;
209
  margin-bottom: 10px; /* Spacing between sections */
 
210
  }
211
  /* Customization section title */
212
  .addon-section h6 {
@@ -218,6 +219,21 @@ h1.text-center {
218
  /* Style for add-on checkboxes */
219
  .addon-section .form-check {
220
  margin-left: 10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  }
222
  /* Category Filter with Custom Radio Buttons */
223
  form.text-center.mb-4 {
 
207
  border-radius: 8px;
208
  padding: 12px;
209
  margin-bottom: 10px; /* Spacing between sections */
210
+
211
  }
212
  /* Customization section title */
213
  .addon-section h6 {
 
219
  /* Style for add-on checkboxes */
220
  .addon-section .form-check {
221
  margin-left: 10px;
222
+ appearance: none;
223
+ -webkit-appearance: none;
224
+ -moz-appearance: none;
225
+ width: 18px; /* Adjust checkbox size */
226
+ height: 18px; /* Adjust checkbox size */
227
+ border: 2px solid #555; /* Darker border color */
228
+ border-radius: 4px; /* Optional: Rounded corners */
229
+ background-color: #333; /* Dark background color */
230
+ cursor: pointer;
231
+ position: relative;
232
+ transition: background-color 0.3s ease, border-color 0.3s ease;
233
+ }
234
+ /* Hover effect for better UI */
235
+ .addon-section input[type="checkbox"]:hover {
236
+ background-color: #444; /* Slightly lighter on hover */
237
  }
238
  /* Category Filter with Custom Radio Buttons */
239
  form.text-center.mb-4 {