Projekt

Obecné

Profil

Stáhnout (7.57 KB) Statistiky
| Větev: | Revize:
1 cfe48a96 cagy
body {
2
  background-color: #ecf0f5;
3 26342eaf Vojtěch Danišík
}
4
5 cfe48a96 cagy
main {
6
  margin-top: 15px;
7 26342eaf Vojtěch Danišík
}
8
9 cfe48a96 cagy
.container {
10
  padding: 0;
11 26342eaf Vojtěch Danišík
}
12
13 cfe48a96 cagy
.container > h1
14
{
15
  font-size: 24px;
16 26342eaf Vojtěch Danišík
}
17
18 cfe48a96 cagy
.box {
19
  border-radius: 3px;
20
  background: #ffffff;
21
  border-top: 3px solid #d2d6de;
22
  border-top-color: #005cab;
23
  margin-bottom: 20px;
24
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
25
26
  padding: 5px 5px 5px 5px;
27
}
28
29
.box-title {
30
  display: inline-block;
31
  font-weight: bold;
32
  font-size: 18px;
33
  margin: 0;
34
  line-height: 1;
35
}
36
37
.box-header {
38
  border-bottom: 1px solid #f4f4f4;
39
  color: #444;
40
  display: block;
41
  padding: 10 10 10 0;
42
  position: relative;
43
}
44
45
table {
46
  margin-top: 10px;
47
}
48
49
50
.button-container {
51
  margin-top: 10px;
52
  margin-bottom: 10px;
53
}
54
55
.align-right {
56
  float: right;
57
}
58
59
.action-button {
60
  width: 28px;
61
  height: 24px;
62
  background: #f5f5f5;
63
  text-align: center;
64
  box-shadow: 0 0 1px #b3b3b3;
65
  color: #333333;
66
  display: inline-block;
67
}
68
69
.action-button a{
70
  color: #333333;
71
  text-decoration: none;
72
  padding-top: 4px;
73
}
74
75
.center-cell {
76 bfd68253 cagy
  display: inline-block;
77
  border: none !important;
78
79
}
80
table > tbody > tr > td > .action-wrapper {
81
  text-align:center;
82
  margin-left:auto;
83
  margin-right:auto;
84
}
85
86
table > thead {
87
  text-align:center;
88
  margin-left:auto;
89
  margin-right:auto;
90 cfe48a96 cagy
}
91
92
.submit_center_button {
93
  text-align: center;
94
}
95
96
.enum_box {
97
  padding-left: 20px;
98
}
99
100
.enum_values {
101
  padding-left: 20px;
102
}
103
104
.panel {
105
  border: 1px solid #d2d6de;
106
  border-radius: 4px;
107
  margin-bottom: 5px;
108
}
109
110
.panel-body {
111
  padding: 5px;
112
}
113
114
.panel-heading a {
115
  display: inline-block;
116
  margin: 0;
117
  padding-top: 3px;
118
  text-decoration: none;
119
  color: black;
120
  padding-left: 5px;
121
  font-size: 18px;
122
}
123
124
.input-action-box {
125
  display: flex;
126
}
127
128
.input-action-margin {
129
  margin-top: 8px;
130
}
131
132
.input-border-bottom {
133
  border-bottom: 1px solid #d2d6de;
134
}
135
136
.form-add-item {
137
  margin-top: 5px;
138
  margin-bottom: 0px;
139
}
140
141
.margin-select {
142
  margin-top: 2px;
143
}
144
145
.flex {
146
  display:flex;
147
}
148
149
.sort-icon {
150
  margin-top: 13px;
151
  padding-right: 13px;
152
}
153
154
.collapse-actions {
155
  margin-top: -5px;
156
  padding-right: 4px;
157
}
158
159
.action-padding a {
160
  padding-left: 0;
161
}
162
163
.input-action-margin-collapse {
164
  margin-top:8px;
165
}
166
167
.transform {
168
  transform: rotate(90deg);
169
}
170
171
.select-filter {
172
  display: flex;
173
}
174
175
table .col-1 { width:30%; }
176
177
table .col-2 { width:25%; }
178
179
table .col-3 { width:45%; }
180
181
182
.select-input-action-margin-collapse {
183
  margin-top:8px;
184
}
185
186
187
.select-action-button {
188
  width: 28px;
189
  height: 24px;
190
  background: #f5f5f5;
191
  text-align: center;
192
  box-shadow: 0 0 1px #b3b3b3;
193
  color: #333333;
194
  display: inline-block;
195
  margin-left: 3px;
196
}
197
198
.select-action-button a{
199
  color: #333333;
200
  text-decoration: none;
201
  padding-top: 4px;
202
}
203
204
.select-filter-input {
205
  margin-left: 3px;
206
}
207
208
.select-text-padding {
209
  margin-top:11px;
210
  display: block;
211
}
212
213
.select-action-headlight {
214
  -webkit-box-shadow: 0px 0px 7px 3px rgba(255,0,0,1);
215
  -moz-box-shadow: 0px 0px 7px 3px rgba(255,0,0,1);
216
  box-shadow: 0px 0px 7px 3px rgba(255,0,0,1);
217
}
218
219 e49f76e4 cagy
.unselectable {
220
  -moz-user-select: none;
221
  -webkit-user-select: none;
222
  -ms-user-select: none;
223
}
224 cfe48a96 cagy
225
.selected-input-container {
226
  display:inline-flex;
227
  width: 100%;
228
  flex-wrap: wrap;
229
  justify-content: space-between;
230
}
231
232
.selected-input-box {
233
  border: 1px solid #d2d6de;
234
  width: 33%;
235
  box-shadow: 0 0 1px #b3b3b3;
236
}
237
238
.selected-input-box-icon {
239
240
  width: 28px;
241
  height: 24px;
242
  background: #f5f5f5;
243
  text-align: center;
244
  box-shadow: 0 0 1px #b3b3b3;
245
  color: #333333;
246
  display: inline-block;
247
  padding-top: 4px;
248
}
249
.table-parameter {
250
  margin-top: -26px;
251
}
252
253
.table-parameter >thead > tr >th {
254
  border: none;
255
}
256
257
.table-parameter > tbody > tr > td > span {
258
  margin-top: 8px;
259
  display: block;
260
}
261
262
table .col-1-p { width:35%; }
263
264
table .col-2-p { width:55%; }
265
266
table .col-3-p { width:10%; }
267
268
.template-input {
269
  margin-top: 10px;
270
}
271
272
.template-input-label {
273
  margin-right: 10px;
274
  margin-top: 8px;
275
}
276
277
.template-input-submit {
278
  margin-left: 10px;
279
}
280
281
.name-input {
282
  margin-top: 10px;
283
  width: 50%;
284
}
285
286
.name-input-label {
287
  margin-right: 10px;
288
  margin-top: 16px;
289
}
290
291
292
293
.tg  {
294
  border-collapse:collapse;
295
  border-spacing:0;
296
  padding: 10px;
297
  border: 1px solid #d2d6de;
298
  box-shadow: 0 0 1px #b3b3b3;
299
}
300
.tg td{
301
  font-family:Arial, sans-serif;
302
  font-size:14px;
303
  padding:10px 5px;
304
  overflow:hidden;
305
  word-break:normal;
306
  border: 1px solid #d2d6de;
307
}
308
.tg th{
309
  font-family:Arial, sans-serif;
310
  font-size:14px;
311
  font-weight:normal;
312
  padding:10px 5px;
313
  overflow:hidden;
314
  word-break:normal;
315
  border: 1px solid #d2d6de;
316
}
317
.tg-align{
318
  text-align:center;
319
  vertical-align:middle !important;
320
}
321 44924273 cagy
322
.hidden {
323 e49f76e4 cagy
  display: none !important;
324 44924273 cagy
}
325 17ad8bc7 cagy
326
.user-panel {
327
  text-align: right;
328
  padding-right: 20px;
329
  padding-top: 20px;
330 38882a3e cagy
}
331
332
.exported-table {
333
  overflow: auto;
334 0486d642 cagy
}
335
336
#spinner-overlay{
337
  position:fixed;
338
  width:100%;
339
  height:100%;
340
  top:0px;
341
  left:0px;
342
  background: rgba(0,0,0,0.5);
343
  z-index: 9999;
344
  display: none;
345
}
346
347
.loader {
348
  color: #ffffff;
349
  font-size: 20px;
350
  top: 50%;
351
  left: 50%;
352
  margin: -15px 0 0 -15px;
353
  width: 30px;
354
  height: 30px;
355
  border-radius: 50%;
356
  position: absolute;
357
  text-indent: -9999em;
358
  -webkit-animation: load4 1.3s infinite linear;
359
  animation: load4 1.3s infinite linear;
360
  -webkit-transform: translateZ(0);
361
  -ms-transform: translateZ(0);
362
  transform: translateZ(0);
363
}
364
@-webkit-keyframes load4 {
365
  0%,
366
  100% {
367
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
368
  }
369
  12.5% {
370
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
371
  }
372
  25% {
373
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
374
  }
375
  37.5% {
376
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
377
  }
378
  50% {
379
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
380
  }
381
  62.5% {
382
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
383
  }
384
  75% {
385
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
386
  }
387
  87.5% {
388
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
389
  }
390
}
391
@keyframes load4 {
392
  0%,
393
  100% {
394
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
395
  }
396
  12.5% {
397
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
398
  }
399
  25% {
400
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
401
  }
402
  37.5% {
403
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
404
  }
405
  50% {
406
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
407
  }
408
  62.5% {
409
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
410
  }
411
  75% {
412
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
413
  }
414
  87.5% {
415
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
416
  }
417 17ad8bc7 cagy
}