DmitrMakeev commited on
Commit
fca471a
·
verified ·
1 Parent(s): feda564

Update nutri_call.html

Browse files
Files changed (1) hide show
  1. nutri_call.html +8 -7
nutri_call.html CHANGED
@@ -122,27 +122,28 @@
122
  padding: 1em;
123
  margin-bottom: 20px;
124
  border-radius: 8px;
125
- text-align: center;
126
  }
127
 
128
- .calculation-box h2 {
 
129
  color: #2e8b57;
130
- margin-top: 0;
131
- margin-bottom: 15px;
132
  }
133
 
134
- .calculation-box button {
135
  background-color: #2e8b57;
136
  color: white;
137
  border: none;
138
- padding: 10px 20px;
139
  font-size: 16px;
140
  border-radius: 5px;
141
  cursor: pointer;
 
142
  transition: background-color 0.3s;
 
143
  }
144
 
145
- .calculation-box button:hover {
146
  background-color: #3cb371;
147
  }
148
 
 
122
  padding: 1em;
123
  margin-bottom: 20px;
124
  border-radius: 8px;
 
125
  }
126
 
127
+ .calculation-box legend {
128
+ font-weight: bold;
129
  color: #2e8b57;
130
+ padding: 0 10px;
 
131
  }
132
 
133
+ #calculate-btn {
134
  background-color: #2e8b57;
135
  color: white;
136
  border: none;
137
+ padding: 8px 16px;
138
  font-size: 16px;
139
  border-radius: 5px;
140
  cursor: pointer;
141
+ margin-top: 10px;
142
  transition: background-color 0.3s;
143
+ width: 120px;
144
  }
145
 
146
+ #calculate-btn:hover {
147
  background-color: #3cb371;
148
  }
149