Subbu1304 commited on
Commit
7dea95f
·
verified ·
1 Parent(s): 8687627

Update templates/menu.html

Browse files
Files changed (1) hide show
  1. templates/menu.html +14 -14
templates/menu.html CHANGED
@@ -96,38 +96,38 @@
96
  transition: background-color 0.3s ease;
97
  } */
98
 
99
- .add-btn {
100
  position: absolute;
101
  top: 50%;
102
  right: 10px; /* Position the Add button right next to Customize */
103
  transform: translateY(-50%);
104
- background-color: #D32F2F; /* Chilly Red color for the Add button */
105
- color: #fff;
106
- border-color: #D32F2F;
107
  padding: 6px 18px;
108
  border-radius: 20px;
109
  display: flex;
110
  align-items: center;
111
  font-size: 14px;
112
- box-shadow: none;
113
- font-weight: bold;/* Ensure no box shadow */
114
  }
115
 
116
- /* Remove hover effect */
117
- /* .add-btn:hover {
118
- background-color: #D32F2F; /* No hover color change */
119
  border-color: #D32F2F;
120
- } */
121
 
122
- /* No hover transition, keeping the same color */
123
- .add-btn i {
124
- margin-left: 5px; /* Icon spacing */
125
  }
126
 
127
 
128
 
129
 
130
 
 
131
  .card-btn{
132
  display: flex;
133
  flex-direction: row;
@@ -572,7 +572,7 @@ form-check-input addon-option{
572
  </div>
573
  <div>
574
  <!-- Add Button on Image -->
575
- <button class="btn add-btn">
576
  Add +
577
  </button>
578
  </div>
 
96
  transition: background-color 0.3s ease;
97
  } */
98
 
99
+ .custom-add-btn {
100
  position: absolute;
101
  top: 50%;
102
  right: 10px; /* Position the Add button right next to Customize */
103
  transform: translateY(-50%);
104
+ background-color: #D32F2F; /* Red color for the Add button */
105
+ color: #fff; /* White text color */
106
+ border: none; /* No border */
107
  padding: 6px 18px;
108
  border-radius: 20px;
109
  display: flex;
110
  align-items: center;
111
  font-size: 14px;
112
+ box-shadow: none; /* Ensure no box shadow */
113
+ font-weight: bold; /* Bold text */
114
  }
115
 
116
+ /* No hover effect */
117
+ .custom-add-btn:hover {
118
+ background-color: #D32F2F; /* Keep the same color on hover */
119
  border-color: #D32F2F;
120
+ }
121
 
122
+ .custom-add-btn i {
123
+ margin-left: 5px; /* Icon spacing */
 
124
  }
125
 
126
 
127
 
128
 
129
 
130
+
131
  .card-btn{
132
  display: flex;
133
  flex-direction: row;
 
572
  </div>
573
  <div>
574
  <!-- Add Button on Image -->
575
+ <button class="btn custom-add-btn">
576
  Add +
577
  </button>
578
  </div>