Spaces:
Sleeping
Sleeping
Update nutri_call.html
Browse files- nutri_call.html +47 -0
nutri_call.html
CHANGED
@@ -113,6 +113,47 @@
|
|
113 |
width: 80px;
|
114 |
margin: 0 5px;
|
115 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
</style>
|
117 |
</head>
|
118 |
|
@@ -258,5 +299,11 @@
|
|
258 |
</div>
|
259 |
</div>
|
260 |
</fieldset>
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
</body>
|
262 |
</html>
|
|
|
113 |
width: 80px;
|
114 |
margin: 0 5px;
|
115 |
}
|
116 |
+
|
117 |
+
|
118 |
+
/* Стиль для новой рамки с кнопкой */
|
119 |
+
.calculation-box {
|
120 |
+
border: 2px solid #2e8b57;
|
121 |
+
background-color: #eaffea;
|
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 |
+
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
+
|
153 |
+
|
154 |
+
|
155 |
+
|
156 |
+
|
157 |
</style>
|
158 |
</head>
|
159 |
|
|
|
299 |
</div>
|
300 |
</div>
|
301 |
</fieldset>
|
302 |
+
|
303 |
+
|
304 |
+
<fieldset class="calculation-box">
|
305 |
+
<legend>Расчёт удобрений</legend>
|
306 |
+
<button id="calculate-btn">Запуск</button>
|
307 |
+
</fieldset>
|
308 |
</body>
|
309 |
</html>
|