Spaces:
Sleeping
Sleeping
Update nutri_call.html
Browse files- nutri_call.html +29 -14
nutri_call.html
CHANGED
|
@@ -37,20 +37,39 @@
|
|
| 37 |
border: 1px solid #ccc;
|
| 38 |
border-radius: 4px;
|
| 39 |
}
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
|
|
|
|
|
|
| 44 |
padding: 10px;
|
| 45 |
-
|
| 46 |
}
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
align-items: center;
|
| 53 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 54 |
.fertilisers-grid-container {
|
| 55 |
display: grid;
|
| 56 |
grid-template-columns: repeat(10, auto);
|
|
@@ -58,10 +77,6 @@
|
|
| 58 |
padding: 10px;
|
| 59 |
align-items: center;
|
| 60 |
}
|
| 61 |
-
.profile-label {
|
| 62 |
-
text-align: center;
|
| 63 |
-
font-weight: bold;
|
| 64 |
-
}
|
| 65 |
</style>
|
| 66 |
</head>
|
| 67 |
|
|
|
|
| 37 |
border: 1px solid #ccc;
|
| 38 |
border-radius: 4px;
|
| 39 |
}
|
| 40 |
+
|
| 41 |
+
/* Основные элементы в одну строку */
|
| 42 |
+
.main-elements {
|
| 43 |
+
display: flex;
|
| 44 |
+
justify-content: center;
|
| 45 |
+
gap: 10px;
|
| 46 |
padding: 10px;
|
| 47 |
+
flex-wrap: wrap;
|
| 48 |
}
|
| 49 |
+
|
| 50 |
+
/* Контейнер для каждого элемента */
|
| 51 |
+
.element-group {
|
| 52 |
+
display: flex;
|
| 53 |
+
flex-direction: column;
|
| 54 |
align-items: center;
|
| 55 |
}
|
| 56 |
+
|
| 57 |
+
/* Азотные элементы в одну строку под основными */
|
| 58 |
+
.nitrogen-elements {
|
| 59 |
+
display: flex;
|
| 60 |
+
justify-content: center;
|
| 61 |
+
gap: 20px;
|
| 62 |
+
padding: 10px;
|
| 63 |
+
margin-top: -10px;
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
/* Стиль для подписей */
|
| 67 |
+
.element-label {
|
| 68 |
+
margin-bottom: 5px;
|
| 69 |
+
font-weight: bold;
|
| 70 |
+
}
|
| 71 |
+
|
| 72 |
+
/* Сетка для удобрений */
|
| 73 |
.fertilisers-grid-container {
|
| 74 |
display: grid;
|
| 75 |
grid-template-columns: repeat(10, auto);
|
|
|
|
| 77 |
padding: 10px;
|
| 78 |
align-items: center;
|
| 79 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
</style>
|
| 81 |
</head>
|
| 82 |
|