DmitrMakeev commited on
Commit
575696a
·
verified ·
1 Parent(s): 00ad3aa

Update nutri_call.html

Browse files
Files changed (1) hide show
  1. nutri_call.html +37 -0
nutri_call.html CHANGED
@@ -526,7 +526,44 @@ legend {
526
  }
527
 
528
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
529
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
530
 
531
  </style>
532
 
 
526
  }
527
 
528
 
529
+ /* Общие стили */
530
+ .fertilisers-container {
531
+ display: table;
532
+ width: 100%;
533
+ border-collapse: collapse;
534
+ }
535
+
536
+ .fert-row {
537
+ display: table-row;
538
+ }
539
+
540
+ .fert-name,
541
+ .fert-header,
542
+ .fert-cell,
543
+ .fert-input {
544
+ display: table-cell;
545
+ padding: 5px 10px;
546
+ text-align: center;
547
+ border: 1px solid #ccc;
548
+ }
549
 
550
+ .fert-header {
551
+ font-weight: bold;
552
+ background-color: #eaeaea;
553
+ }
554
+
555
+ .fert-input {
556
+ width: 80px;
557
+ }
558
+
559
+ /* Цветовая маркировка для бутылок */
560
+ .bottle-a {
561
+ background-color: #d1e7fd; /* Светло-голубой */
562
+ }
563
+
564
+ .bottle-b {
565
+ background-color: #d4f5d4; /* Светло-зеленый */
566
+ }
567
 
568
  </style>
569