Spaces:
Sleeping
Sleeping
Update nutri_call.html
Browse files- nutri_call.html +39 -19
nutri_call.html
CHANGED
@@ -439,7 +439,7 @@ legend {
|
|
439 |
.compensation-section {
|
440 |
display: flex;
|
441 |
flex-direction: column;
|
442 |
-
gap:
|
443 |
}
|
444 |
|
445 |
.enhancement-title {
|
@@ -474,6 +474,11 @@ legend {
|
|
474 |
border-radius: 4px;
|
475 |
}
|
476 |
|
|
|
|
|
|
|
|
|
|
|
477 |
.input-column {
|
478 |
display: flex;
|
479 |
flex-direction: column;
|
@@ -489,8 +494,9 @@ legend {
|
|
489 |
border-radius: 5px;
|
490 |
cursor: pointer;
|
491 |
transition: background-color 0.3s;
|
492 |
-
margin-
|
493 |
font-weight: bold;
|
|
|
494 |
}
|
495 |
|
496 |
#calculate-btn:hover {
|
@@ -504,7 +510,7 @@ legend {
|
|
504 |
}
|
505 |
|
506 |
.input-group label {
|
507 |
-
width:
|
508 |
text-align: right;
|
509 |
font-weight: bold;
|
510 |
font-size: 0.9em;
|
@@ -518,8 +524,6 @@ legend {
|
|
518 |
}
|
519 |
|
520 |
|
521 |
-
|
522 |
-
|
523 |
.micro-container {
|
524 |
padding: 10px;
|
525 |
}
|
@@ -923,24 +927,40 @@ legend {
|
|
923 |
|
924 |
|
925 |
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
<div class="input-
|
932 |
-
<
|
933 |
-
|
934 |
-
|
935 |
-
|
|
|
|
|
|
|
|
|
|
|
936 |
</div>
|
937 |
-
|
938 |
-
|
939 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
940 |
</div>
|
941 |
</div>
|
|
|
|
|
|
|
942 |
</div>
|
943 |
-
</
|
|
|
944 |
|
945 |
|
946 |
|
|
|
439 |
.compensation-section {
|
440 |
display: flex;
|
441 |
flex-direction: column;
|
442 |
+
gap: 20px;
|
443 |
}
|
444 |
|
445 |
.enhancement-title {
|
|
|
474 |
border-radius: 4px;
|
475 |
}
|
476 |
|
477 |
+
.input-columns {
|
478 |
+
display: flex;
|
479 |
+
gap: 20px;
|
480 |
+
}
|
481 |
+
|
482 |
.input-column {
|
483 |
display: flex;
|
484 |
flex-direction: column;
|
|
|
494 |
border-radius: 5px;
|
495 |
cursor: pointer;
|
496 |
transition: background-color 0.3s;
|
497 |
+
margin-top: 10px;
|
498 |
font-weight: bold;
|
499 |
+
align-self: flex-start; /* Кнопка выравнивается по левому краю */
|
500 |
}
|
501 |
|
502 |
#calculate-btn:hover {
|
|
|
510 |
}
|
511 |
|
512 |
.input-group label {
|
513 |
+
width: 120px; /* Увеличил ширину для лучшего отображения текста */
|
514 |
text-align: right;
|
515 |
font-weight: bold;
|
516 |
font-size: 0.9em;
|
|
|
524 |
}
|
525 |
|
526 |
|
|
|
|
|
527 |
.micro-container {
|
528 |
padding: 10px;
|
529 |
}
|
|
|
927 |
|
928 |
|
929 |
|
930 |
+
<fieldset class="calculation-box">
|
931 |
+
<legend>Расчёт удобрений</legend>
|
932 |
+
<div class="calculation-container">
|
933 |
+
<div class="compensation-section">
|
934 |
+
<!-- Поля ввода -->
|
935 |
+
<div class="input-columns">
|
936 |
+
<div class="input-column">
|
937 |
+
<div class="input-group">
|
938 |
+
<label for="liters-input">Литры:</label>
|
939 |
+
<input type="number" id="liters-input" value="100" min="1" step="1">
|
940 |
+
</div>
|
941 |
+
<div class="input-group">
|
942 |
+
<label for="rounding-precision">Точность:</label>
|
943 |
+
<input type="number" id="rounding-precision" value="3" min="0" max="3" step="1">
|
944 |
+
</div>
|
945 |
</div>
|
946 |
+
|
947 |
+
<div class="input-column">
|
948 |
+
<div class="input-group">
|
949 |
+
<label for="activation-cacl">Активация CaCl:</label>
|
950 |
+
<input type="number" id="activation-cacl" value="0" min="0" step="0.01">
|
951 |
+
</div>
|
952 |
+
<div class="input-group">
|
953 |
+
<label for="enhancement-cacl">Усиление CaCl:</label>
|
954 |
+
<input type="number" id="enhancement-cacl" value="0" min="0" step="0.01">
|
955 |
+
</div>
|
956 |
</div>
|
957 |
</div>
|
958 |
+
|
959 |
+
<!-- Кнопка "Рассчитать" -->
|
960 |
+
<button id="calculate-btn">Рассчитать</button>
|
961 |
</div>
|
962 |
+
</div>
|
963 |
+
</fieldset>
|
964 |
|
965 |
|
966 |
|