DmitrMakeev commited on
Commit
6677655
1 Parent(s): f9dec90

Update biz_v.html

Browse files
Files changed (1) hide show
  1. biz_v.html +262 -0
biz_v.html CHANGED
@@ -7,6 +7,268 @@
7
  <link rel="stylesheet" href="styles.css">
8
  <script src="https://cdn.jsdelivr.net/npm/notyf/notyf.min.js"></script>
9
  </head>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  <body>
11
  <h1>WhatsMasterGRM - Принудительное обновление базы</h1>
12
 
 
7
  <link rel="stylesheet" href="styles.css">
8
  <script src="https://cdn.jsdelivr.net/npm/notyf/notyf.min.js"></script>
9
  </head>
10
+ <style>
11
+ body {
12
+ font-family: Arial, sans-serif;
13
+ text-align: center;
14
+ background-color: #f0f0f0;
15
+ margin: 0;
16
+ padding: 0;
17
+ }
18
+
19
+ h1 {
20
+ background-color: #4CAF50;
21
+ color: white;
22
+ padding: 20px;
23
+ margin: 0;
24
+ border-bottom: 2px solid #388E3C;
25
+ font-size: 28px;
26
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
27
+ }
28
+
29
+ .container {
30
+ display: flex;
31
+ justify-content: space-around;
32
+ margin-top: 20px;
33
+ }
34
+
35
+ .block {
36
+ width: 45%;
37
+ text-align: center;
38
+ background-color: white;
39
+ padding: 20px;
40
+ border-radius: 10px;
41
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
42
+ }
43
+
44
+ .form-group {
45
+ margin: 20px 0;
46
+ }
47
+
48
+ .form-group label {
49
+ display: block;
50
+ margin-bottom: 8px;
51
+ font-size: 16px;
52
+ }
53
+
54
+ .form-group input,
55
+ .form-group select {
56
+ width: 100%;
57
+ padding: 12px;
58
+ font-size: 16px;
59
+ border: 1px solid #ccc;
60
+ border-radius: 5px;
61
+ box-sizing: border-box;
62
+ }
63
+
64
+ button {
65
+ display: block;
66
+ margin: 20px auto;
67
+ color: white;
68
+ background-color: #4CAF50;
69
+ border: none;
70
+ cursor: pointer;
71
+ padding: 12px 24px;
72
+ font-size: 16px;
73
+ border-radius: 5px;
74
+ transition: background-color 0.3s ease;
75
+ }
76
+
77
+ button:hover {
78
+ background-color: #388E3C;
79
+ }
80
+
81
+ .input-row {
82
+ display: flex;
83
+ justify-content: center;
84
+ gap: 10px;
85
+ margin-top: 20px;
86
+ }
87
+
88
+ .input-row input[type="file"] {
89
+ padding: 10px;
90
+ font-size: 16px;
91
+ border: 1px solid #ccc;
92
+ border-radius: 5px;
93
+ }
94
+
95
+ .input-row input[type="checkbox"] {
96
+ margin-top: 5px;
97
+ }
98
+
99
+ .input-row label {
100
+ display: flex;
101
+ align-items: center;
102
+ color: #000000;
103
+ font-size: 16px;
104
+ }
105
+
106
+ #uploadButton {
107
+ color: white;
108
+ background-color: #4CAF50;
109
+ border: none;
110
+ cursor: pointer;
111
+ padding: 10px 20px;
112
+ font-size: 16px;
113
+ border-radius: 5px;
114
+ margin-top: 20px;
115
+ display: block;
116
+ margin-left: auto;
117
+ margin-right: auto;
118
+ }
119
+
120
+ #uploadButton:hover {
121
+ background-color: #388E3C;
122
+ }
123
+
124
+ .block h2 {
125
+ text-align: center;
126
+ }
127
+
128
+ /* Custom Checkbox Styles */
129
+ .container-checkbox {
130
+ color: #000000;
131
+ display: block;
132
+ position: relative;
133
+ padding-left: 35px;
134
+ margin-bottom: 12px;
135
+ cursor: pointer;
136
+ font-size: 16px;
137
+ -webkit-user-select: none;
138
+ -moz-user-select: none;
139
+ -ms-user-select: none;
140
+ user-select: none;
141
+ }
142
+
143
+ .container-checkbox input {
144
+ position: absolute;
145
+ opacity: 0;
146
+ cursor: pointer;
147
+ height: 0;
148
+ width: 0;
149
+ }
150
+
151
+ .checkmark {
152
+ position: absolute;
153
+ top: 0;
154
+ left: 0;
155
+ height: 25px;
156
+ width: 25px;
157
+ background-color: #eee;
158
+ }
159
+
160
+ .container-checkbox:hover input ~ .checkmark {
161
+ background-color: #ccc;
162
+ }
163
+
164
+ .container-checkbox input:checked ~ .checkmark {
165
+ background-color: #4CAF50;
166
+ }
167
+
168
+ .checkmark:after {
169
+ content: "";
170
+ position: absolute;
171
+ display: none;
172
+ }
173
+
174
+ .container-checkbox input:checked ~ .checkmark:after {
175
+ display: block;
176
+ }
177
+
178
+ .container-checkbox .checkmark:after {
179
+ left: 9px;
180
+ top: 5px;
181
+ width: 5px;
182
+ height: 10px;
183
+ border: solid white;
184
+ border-width: 0 3px 3px 0;
185
+ -webkit-transform: rotate(45deg);
186
+ -ms-transform: rotate(45deg);
187
+ transform: rotate(45deg);
188
+ }
189
+
190
+ input[type="date"] {
191
+ background-color: #4CAF50;
192
+ color: white;
193
+ padding: 12px;
194
+ font-size: 16px;
195
+ border: none;
196
+ border-radius: 5px;
197
+ width: 100%;
198
+ box-sizing: border-box;
199
+ }
200
+
201
+ ::-webkit-calendar-picker-indicator {
202
+ background-color: white;
203
+ padding: 5px;
204
+ cursor: pointer;
205
+ border-radius: 3px;
206
+ }
207
+
208
+ #dropdown {
209
+ width: 100%;
210
+ padding: 12px;
211
+ font-size: 16px;
212
+ border: 1px solid #ccc;
213
+ border-radius: 5px;
214
+ box-sizing: border-box;
215
+ margin-bottom: 20px;
216
+ }
217
+
218
+ #uploadButtonJson {
219
+ color: white;
220
+ background-color: #4CAF50;
221
+ border: none;
222
+ cursor: pointer;
223
+ padding: 10px 20px;
224
+ font-size: 16px;
225
+ border-radius: 5px;
226
+ margin-top: 20px;
227
+ display: block;
228
+ margin-left: auto;
229
+ margin-right: auto;
230
+ }
231
+
232
+ #uploadButtonJson:hover {
233
+ background-color: #388E3C;
234
+ }
235
+
236
+ .block form#uploadFormJson {
237
+ margin-top: 20px;
238
+ }
239
+
240
+ .block form#uploadFormJson label {
241
+ display: flex;
242
+ align-items: center;
243
+ margin-bottom: 10px;
244
+ font-size: 16px;
245
+ color: #000000;
246
+ }
247
+
248
+ .block form#uploadFormJson input[type="file"] {
249
+ padding: 10px;
250
+ font-size: 16px;
251
+ border: 1px solid #ccc;
252
+ border-radius: 5px;
253
+ margin-right: 10px;
254
+ }
255
+
256
+ #message {
257
+ margin-top: 20px;
258
+ padding: 10px;
259
+ border: 1px solid #ccc;
260
+ border-radius: 5px;
261
+ background-color: #fff;
262
+ color: #4CAF50;
263
+ text-align: center;
264
+ }
265
+
266
+
267
+
268
+
269
+
270
+
271
+ </style>
272
  <body>
273
  <h1>WhatsMasterGRM - Принудительное обновление базы</h1>
274