Projekt

Obecné

Profil

Stáhnout (7.8 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 856636e3 mlinha
.tg td {
301 cfe48a96 cagy
  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 856636e3 mlinha
.tg th {
309 cfe48a96 cagy
  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 856636e3 mlinha
.tg-align-center {
318 cfe48a96 cagy
  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 856636e3 mlinha
.tg-align-left {
337
  text-align:left;
338
  vertical-align:middle !important;
339
}
340
341
pre {
342
  font-family:Arial, sans-serif;
343
  font-size:14px;
344
}
345
346
.tg-left-span {
347
  white-space: pre;
348
}
349
350 0486d642 cagy
#spinner-overlay{
351
  position:fixed;
352
  width:100%;
353
  height:100%;
354
  top:0px;
355
  left:0px;
356
  background: rgba(0,0,0,0.5);
357
  z-index: 9999;
358
  display: none;
359
}
360
361
.loader {
362
  color: #ffffff;
363
  font-size: 20px;
364
  top: 50%;
365
  left: 50%;
366
  margin: -15px 0 0 -15px;
367
  width: 30px;
368
  height: 30px;
369
  border-radius: 50%;
370
  position: absolute;
371
  text-indent: -9999em;
372
  -webkit-animation: load4 1.3s infinite linear;
373
  animation: load4 1.3s infinite linear;
374
  -webkit-transform: translateZ(0);
375
  -ms-transform: translateZ(0);
376
  transform: translateZ(0);
377
}
378
@-webkit-keyframes load4 {
379
  0%,
380
  100% {
381
    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;
382
  }
383
  12.5% {
384
    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;
385
  }
386
  25% {
387
    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;
388
  }
389
  37.5% {
390
    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;
391
  }
392
  50% {
393
    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;
394
  }
395
  62.5% {
396
    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;
397
  }
398
  75% {
399
    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;
400
  }
401
  87.5% {
402
    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;
403
  }
404
}
405
@keyframes load4 {
406
  0%,
407
  100% {
408
    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;
409
  }
410
  12.5% {
411
    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;
412
  }
413
  25% {
414
    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;
415
  }
416
  37.5% {
417
    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;
418
  }
419
  50% {
420
    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;
421
  }
422
  62.5% {
423
    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;
424
  }
425
  75% {
426
    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;
427
  }
428
  87.5% {
429
    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;
430
  }
431 b7cd226e cagy
}
432
433
.assembly-enum-picker {
434
  width: 100% !important;
435 17ad8bc7 cagy
}