DmitrMakeev commited on
Commit
3a5b355
1 Parent(s): 757b606

Update biz_v.html

Browse files
Files changed (1) hide show
  1. biz_v.html +90 -0
biz_v.html CHANGED
@@ -70,6 +70,96 @@
70
  box-sizing: border-box;
71
  }
72
  </style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  </head>
74
  <body>
75
  <h1>WhatsGRM - Принудительное обновление базы данных с Бизон 365</h1>
 
70
  box-sizing: border-box;
71
  }
72
  </style>
73
+
74
+
75
+
76
+ <style>
77
+ body {
78
+ font-family: Arial, sans-serif;
79
+ text-align: center;
80
+ background-color: #f0f0f0;
81
+ margin: 0;
82
+ padding: 0;
83
+ }
84
+ h1 {
85
+ background-color: #4CAF50;
86
+ color: white;
87
+ padding: 20px;
88
+ margin: 0;
89
+ border-bottom: 2px solid #388E3C;
90
+ }
91
+ .input-row {
92
+ display: flex;
93
+ justify-content: center;
94
+ gap: 10px;
95
+ margin-top: 20px;
96
+ }
97
+ .input-row input[type="file"] {
98
+ padding: 10px;
99
+ font-size: 16px;
100
+ border: 1px solid #ccc;
101
+ border-radius: 5px;
102
+ }
103
+ .input-row input[type="checkbox"] {
104
+ margin-top: 5px;
105
+ }
106
+ .input-row label {
107
+ display: flex;
108
+ align-items: center;
109
+ color: #4CAF50;
110
+ font-size: 16px;
111
+ }
112
+ #uploadButton {
113
+ color: white;
114
+ background-color: #4CAF50;
115
+ border: none;
116
+ cursor: pointer;
117
+ padding: 10px 20px;
118
+ font-size: 16px;
119
+ border-radius: 5px;
120
+ margin-top: 20px;
121
+ }
122
+ #uploadButton:hover {
123
+ background-color: #388E3C;
124
+ }
125
+ .loader {
126
+ border: 16px solid #f3f3f3;
127
+ border-radius: 50%;
128
+ border-top: 16px solid #4CAF50; /* Зелёный цвет */
129
+ width: 120px;
130
+ height: 120px;
131
+ -webkit-animation: spin 2s linear infinite; /* Safari */
132
+ animation: spin 2s linear infinite;
133
+ display: none; /* Изначально скрыт */
134
+ position: fixed; /* Фиксированное положение */
135
+ top: 50%; /* По центру по вертикали */
136
+ left: 50%; /* По центру по горизонтали */
137
+ transform: translate(-50%, -50%); /* Центрирование */
138
+ }
139
+
140
+ /* Safari */
141
+ @-webkit-keyframes spin {
142
+ 0% { -webkit-transform: rotate(0deg); }
143
+ 100% { -webkit-transform: rotate(360deg); }
144
+ }
145
+
146
+ @keyframes spin {
147
+ 0% { transform: rotate(0deg); }
148
+ 100% { transform: rotate(360deg); }
149
+ }
150
+ </style>
151
+
152
+
153
+
154
+
155
+
156
+
157
+
158
+
159
+
160
+
161
+
162
+
163
  </head>
164
  <body>
165
  <h1>WhatsGRM - Принудительное обновление базы данных с Бизон 365</h1>