Spaces:
Sleeping
Sleeping
File size: 9,336 Bytes
87d1369 0dbef86 9859341 0dbef86 be906c9 c8dc4ed be906c9 c8dc4ed be906c9 c8dc4ed be906c9 c8dc4ed be906c9 a71756c 9859341 d5e2dd0 a71756c d5e2dd0 9859341 d5e2dd0 0dbef86 9b1491d a71756c d5e2dd0 a71756c 7015916 9b1491d 7015916 9b1491d d5e2dd0 9859341 0dbef86 a9adc70 9b1491d 9859341 9b1491d 87d1369 9b1491d 87d1369 9859341 9b1491d 9859341 9b1491d 9859341 87d1369 9859341 87d1369 9b1491d 943eb46 a71756c 7015916 a71756c d5e2dd0 a71756c 7015916 a71756c f920160 d5e2dd0 f920160 d5e2dd0 f920160 d5e2dd0 a71756c 7015916 a71756c f920160 d5e2dd0 f920160 d5e2dd0 f920160 d5e2dd0 a71756c 7015916 a71756c d5e2dd0 f920160 d5e2dd0 a71756c 7015916 a71756c f920160 d5e2dd0 a71756c 7015916 a71756c f920160 d5e2dd0 f920160 d5e2dd0 a71756c 7015916 a71756c f920160 d5e2dd0 f920160 d5e2dd0 a71756c 943eb46 9b1491d 87d1369 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Калькулятор удобрений</title>
<style>
body {
margin: 0 auto;
width: 950px;
padding: 1em;
background-color: #f0f0f0;
font-family: Arial, sans-serif;
}
h1 {
background-color: #2e8b57;
color: white;
text-align: center;
padding: 1em;
border-radius: 10px;
margin-bottom: 20px;
}
fieldset {
border: 2px solid #2e8b57;
background-color: #eaffea;
padding: 1em;
margin-bottom: 20px;
border-radius: 8px;
}
legend {
font-weight: bold;
color: #2e8b57;
padding: 0 10px;
}
input[type=number] {
width: 80px;
padding: 3px;
border: 1px solid #ccc;
border-radius: 4px;
}
/* Основные элементы в одну строку сверху */
.profile-grid-container {
display: grid;
grid-template-columns: repeat(7, 90px); /* Такая же ширина как в нижнем блоке */
gap: 10px;
padding: 10px;
text-align: center;
}
/* Контейнер для азотных элементов */
.nitrogen-container {
display: flex;
gap: 20px;
padding: 10px 10px 10px 120px; /* Отступ слева как в нижнем блоке */
margin-top: 10px;
}
/* Стиль для группы азотных элементов */
.nitrogen-group {
display: flex;
align-items: center;
gap: 5px;
}
/* Стиль для подписей */
.element-label {
font-weight: bold;
margin-bottom: 5px;
display: block;
width: 90px; /* Такая же ширина как ячейки в нижнем блоке */
text-align: center;
}
/* Стиль для полей ввода в верхнем блоке */
.profile-grid-container input[type=number],
.nitrogen-group input[type=number] {
width: 80px; /* Такая же ширина как в нижнем блоке */
margin: 0 auto;
}
/* Новая сетка для удобрений */
.fertilisers-container {
display: flex;
flex-direction: column;
padding: 10px;
}
/* Строка с заголовками */
.fert-header {
display: grid;
grid-template-columns: 120px repeat(8, 90px);
gap: 10px;
margin-bottom: 10px;
font-weight: bold;
}
/* Строка с удобрением */
.fert-row {
display: grid;
grid-template-columns: 120px repeat(8, 90px);
gap: 10px;
align-items: center;
margin-bottom: 5px;
}
/* Стиль для ячеек */
.fert-cell {
text-align: center;
min-height: 25px;
}
/* Стиль для названий удобрений */
.fert-name {
text-align: left;
font-weight: bold;
}
/* Стиль для полей ввода */
.fert-input {
width: 80px;
margin: 0 auto;
}
</style>
</head>
<body>
<h1>Калькулятор удобрений</h1>
<fieldset>
<legend>Макропрофиль в мг/л (ppm)</legend>
<!-- Основные элементы в строку сверху -->
<div class="profile-grid-container">
<div>
<span class="element-label">P</span>
<input id="pP" type="number" value="0.0" step="1.0"/>
</div>
<div>
<span class="element-label">K</span>
<input id="pK" type="number" value="0.0" step="1.0"/>
</div>
<div>
<span class="element-label">Ca</span>
<input id="pCa" type="number" value="0.0" step="1.0"/>
</div>
<div>
<span class="element-label">Mg</span>
<input id="pMg" type="number" value="0.0" step="1.0"/>
</div>
<div>
<span class="element-label">S</span>
<input id="pS" type="number" value="0.0" step="1.0"/>
</div>
<div>
<span class="element-label">Cl</span>
<input id="pCl" type="number" value="0.0" step="1.0"/>
</div>
<div>
<span class="element-label">EC</span>
<input id="pEC" type="number" value="0.0" step="0.001"/>
</div>
</div>
<!-- Азотные элементы слева под основными -->
<div class="nitrogen-container">
<div class="nitrogen-group">
<label for="pNO3">NO3:</label>
<input id="pNO3" type="number" value="0.0" step="1.0"/>
</div>
<div class="nitrogen-group">
<label for="pNH4">NH4:</label>
<input id="pNH4" type="number" value="0.0" step="1.0"/>
</div>
</div>
</fieldset>
<fieldset>
<legend>Составы солей</legend>
<div class="fertilisers-container">
<!-- Заголовки столбцов -->
<div class="fert-header">
<span class="fert-name">Удобрение</span>
<span class="fert-cell">NH4</span>
<span class="fert-cell">NO3</span>
<span class="fert-cell">P</span>
<span class="fert-cell">K</span>
<span class="fert-cell">Ca</span>
<span class="fert-cell">Mg</span>
<span class="fert-cell">S</span>
<span class="fert-cell">грамм</span>
</div>
<!-- Строки с удобрениями -->
<div class="fert-row">
<span class="fert-name">CaN2O6</span>
<span class="fert-cell" id="f11">-</span>
<input class="fert-input" type="number" step="0.001" id="ca_no3"/>
<span class="fert-cell" id="f13">-</span>
<span class="fert-cell" id="f14">-</span>
<input class="fert-input" type="number" step="0.001" id="ca_ca"/>
<span class="fert-cell" id="f16">-</span>
<span class="fert-cell" id="f17">-</span>
<input class="fert-input" type="number" step="0.001" id="ca_gram"/>
</div>
<div class="fert-row">
<span class="fert-name">KNO3</span>
<span class="fert-cell" id="f21">-</span>
<input class="fert-input" type="number" step="0.001" id="kno3_no3"/>
<span class="fert-cell" id="f24">-</span>
<input class="fert-input" type="number" step="0.001" id="kno3_k"/>
<span class="fert-cell" id="f25">-</span>
<span class="fert-cell" id="f26">-</span>
<span class="fert-cell" id="f27">-</span>
<input class="fert-input" type="number" step="0.001" id="kno3_gram"/>
</div>
<div class="fert-row">
<span class="fert-name">NH4NO3</span>
<input class="fert-input" type="number" step="0.001" id="nh4no3_nh4"/>
<input class="fert-input" type="number" step="0.001" id="nh4no3_no3"/>
<span class="fert-cell" id="f33">-</span>
<span class="fert-cell" id="f34">-</span>
<span class="fert-cell" id="f35">-</span>
<span class="fert-cell" id="f36">-</span>
<span class="fert-cell" id="f37">-</span>
<input class="fert-input" type="number" step="0.001" id="nh4no3_gram"/>
</div>
<div class="fert-row">
<span class="fert-name">MgSO4</span>
<span class="fert-cell" id="f41">-</span>
<span class="fert-cell" id="f43">-</span>
<span class="fert-cell" id="f44">-</span>
<span class="fert-cell" id="f45">-</span>
<span class="fert-cell" id="f45">-</span>
<input class="fert-input" type="number" step="0.001" id="mgso4_mg"/>
<input class="fert-input" type="number" step="0.001" id="mgso4_s"/>
<input class="fert-input" type="number" step="0.001" id="mgso4_gram"/>
</div>
<div class="fert-row">
<span class="fert-name">KH2PO4</span>
<span class="fert-cell" id="f51">-</span>
<span class="fert-cell" id="f52">-</span>
<input class="fert-input" type="number" step="0.001" id="kh2po4_p"/>
<input class="fert-input" type="number" step="0.001" id="kh2po4_k"/>
<span class="fert-cell" id="f55">-</span>
<span class="fert-cell" id="f56">-</span>
<span class="fert-cell" id="f57">-</span>
<input class="fert-input" type="number" step="0.001" id="kh2po4_gram"/>
</div>
<div class="fert-row">
<span class="fert-name">K2SO4</span>
<span class="fert-cell" id="f61">-</span>
<span class="fert-cell" id="f62">-</span>
<span class="fert-cell" id="f65">-</span>
<input class="fert-input" type="number" step="0.001" id="k2so4_k"/>
<span class="fert-cell" id="f65">-</span>
<span class="fert-cell" id="f66">-</span>
<input class="fert-input" type="number" step="0.001" id="k2so4_s"/>
<input class="fert-input" type="number" step="0.001" id="k2so4_gram"/>
</div>
</div>
</fieldset>
</body>
</html> |