Spaces:
Sleeping
Sleeping
Update nutri_call.html
Browse files- nutri_call.html +49 -1
nutri_call.html
CHANGED
|
@@ -232,6 +232,38 @@ legend {
|
|
| 232 |
border: 1px solid #ccc;
|
| 233 |
border-radius: 4px;
|
| 234 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 235 |
</style>
|
| 236 |
|
| 237 |
<body>
|
|
@@ -378,7 +410,23 @@ legend {
|
|
| 378 |
</div>
|
| 379 |
</div>
|
| 380 |
</fieldset>
|
| 381 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 382 |
<fieldset class="calculation-box">
|
| 383 |
<legend>Расчёт удобрений</legend>
|
| 384 |
<div class="calculation-container">
|
|
|
|
| 232 |
border: 1px solid #ccc;
|
| 233 |
border-radius: 4px;
|
| 234 |
}
|
| 235 |
+
|
| 236 |
+
|
| 237 |
+
|
| 238 |
+
|
| 239 |
+
.micro-container {
|
| 240 |
+
padding: 10px;
|
| 241 |
+
}
|
| 242 |
+
|
| 243 |
+
.micro-row {
|
| 244 |
+
display: flex;
|
| 245 |
+
gap: 20px;
|
| 246 |
+
}
|
| 247 |
+
|
| 248 |
+
.micro-group {
|
| 249 |
+
display: flex;
|
| 250 |
+
align-items: center;
|
| 251 |
+
gap: 5px;
|
| 252 |
+
}
|
| 253 |
+
|
| 254 |
+
.micro-group label {
|
| 255 |
+
min-width: 120px;
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
.micro-group input {
|
| 259 |
+
width: 80px;
|
| 260 |
+
text-align: right;
|
| 261 |
+
}
|
| 262 |
+
|
| 263 |
+
|
| 264 |
+
|
| 265 |
+
|
| 266 |
+
|
| 267 |
</style>
|
| 268 |
|
| 269 |
<body>
|
|
|
|
| 410 |
</div>
|
| 411 |
</div>
|
| 412 |
</fieldset>
|
| 413 |
+
<fieldset>
|
| 414 |
+
<legend>Микроэлементы (хелатная форма)</legend>
|
| 415 |
+
<div class="micro-container">
|
| 416 |
+
<div class="micro-row">
|
| 417 |
+
<div class="micro-group">
|
| 418 |
+
<label for="micro_fe">Железо (Fe):</label>
|
| 419 |
+
<input id="micro_fe" type="number" step="0.001" readonly style="background-color: #f0f0f0; color: #666;">
|
| 420 |
+
<span>г</span>
|
| 421 |
+
</div>
|
| 422 |
+
<div class="micro-group">
|
| 423 |
+
<label for="micro_mix">Микроэлементы:</label>
|
| 424 |
+
<input id="micro_mix" type="number" step="0.001" readonly style="background-color: #f0f0f0; color: #666;">
|
| 425 |
+
<span>г</span>
|
| 426 |
+
</div>
|
| 427 |
+
</div>
|
| 428 |
+
</div>
|
| 429 |
+
</fieldset>
|
| 430 |
<fieldset class="calculation-box">
|
| 431 |
<legend>Расчёт удобрений</legend>
|
| 432 |
<div class="calculation-container">
|