DSatishchandra commited on
Commit
7f10e3f
·
verified ·
1 Parent(s): 793139a

Update templates/menu.html

Browse files
Files changed (1) hide show
  1. templates/menu.html +13 -11
templates/menu.html CHANGED
@@ -227,10 +227,11 @@
227
  .form-check {
228
  display: inline-block;
229
  margin-right: 15px;
230
- margin-bottom: 10px; /* Add space between buttons */
231
  }
232
 
233
  .form-check-inline {
 
234
  margin-right: 10px;
235
  }
236
 
@@ -243,34 +244,35 @@
243
  appearance: none;
244
  -webkit-appearance: none;
245
  -moz-appearance: none;
246
- width: 18px;
247
- height: 18px;
248
- border: 2px solid #333;
249
  border-radius: 50%;
250
  margin-right: 10px; /* Increased spacing between button and label */
251
  outline: none;
252
  cursor: pointer;
253
  position: relative;
 
254
  }
255
 
256
  .custom-radio:checked {
257
- background-color: #007bff;
258
- border-color: #007bff;
259
  }
260
 
261
  .custom-radio:checked::after {
262
  content: '';
263
  position: absolute;
264
- top: 4px;
265
- left: 4px;
266
- width: 8px;
267
  height: 8px;
268
- background-color: #fff;
269
  border-radius: 50%;
270
  }
271
 
272
  .custom-radio:hover {
273
- border-color: #007bff;
274
  }
275
 
276
  /* Optional: Style the labels */
 
227
  .form-check {
228
  display: inline-block;
229
  margin-right: 15px;
230
+ margin-bottom: 15px; /* Add space between buttons */
231
  }
232
 
233
  .form-check-inline {
234
+ display: inline-block;
235
  margin-right: 10px;
236
  }
237
 
 
244
  appearance: none;
245
  -webkit-appearance: none;
246
  -moz-appearance: none;
247
+ width: 20px;
248
+ height: 20px;
249
+ border: 3px solid #4CAF50; /* Green border */
250
  border-radius: 50%;
251
  margin-right: 10px; /* Increased spacing between button and label */
252
  outline: none;
253
  cursor: pointer;
254
  position: relative;
255
+ display: inline-block;
256
  }
257
 
258
  .custom-radio:checked {
259
+ background-color: #4CAF50; /* Green color when checked */
260
+ border-color: #4CAF50; /* Matching border color */
261
  }
262
 
263
  .custom-radio:checked::after {
264
  content: '';
265
  position: absolute;
266
+ top: 5px;
267
+ left: 5px;
268
+ /*width: 8px;
269
  height: 8px;
270
+ background-color: #fff;*/
271
  border-radius: 50%;
272
  }
273
 
274
  .custom-radio:hover {
275
+ border-color: #388E3C;
276
  }
277
 
278
  /* Optional: Style the labels */