flash_notifier 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,697 @@
1
+ .noty_layout_mixin, #noty_layout__top, #noty_layout__topLeft, #noty_layout__topCenter, #noty_layout__topRight, #noty_layout__bottom, #noty_layout__bottomLeft, #noty_layout__bottomCenter, #noty_layout__bottomRight, #noty_layout__center, #noty_layout__centerLeft, #noty_layout__centerRight {
2
+ position: fixed;
3
+ margin: 0;
4
+ padding: 0;
5
+ z-index: 9999999;
6
+ -webkit-transform: translateZ(0) scale(1, 1);
7
+ transform: translateZ(0) scale(1, 1);
8
+ -webkit-backface-visibility: hidden;
9
+ backface-visibility: hidden;
10
+ -webkit-font-smoothing: subpixel-antialiased;
11
+ filter: blur(0);
12
+ -webkit-filter: blur(0);
13
+ max-width: 90%; }
14
+
15
+ #noty_layout__top {
16
+ top: 0;
17
+ left: 5%;
18
+ width: 90%; }
19
+
20
+ #noty_layout__topLeft {
21
+ top: 20px;
22
+ left: 20px;
23
+ width: 325px; }
24
+
25
+ #noty_layout__topCenter {
26
+ top: 5%;
27
+ left: 50%;
28
+ width: 325px;
29
+ -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
30
+ transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1); }
31
+
32
+ #noty_layout__topRight {
33
+ top: 20px;
34
+ right: 20px;
35
+ width: 325px; }
36
+
37
+ #noty_layout__bottom {
38
+ bottom: 0;
39
+ left: 5%;
40
+ width: 90%; }
41
+
42
+ #noty_layout__bottomLeft {
43
+ bottom: 20px;
44
+ left: 20px;
45
+ width: 325px; }
46
+
47
+ #noty_layout__bottomCenter {
48
+ bottom: 5%;
49
+ left: 50%;
50
+ width: 325px;
51
+ -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
52
+ transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1); }
53
+
54
+ #noty_layout__bottomRight {
55
+ bottom: 20px;
56
+ right: 20px;
57
+ width: 325px; }
58
+
59
+ #noty_layout__center {
60
+ top: 50%;
61
+ left: 50%;
62
+ width: 325px;
63
+ -webkit-transform: translate(-webkit-calc(-50% - .5px), -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
64
+ transform: translate(calc(-50% - .5px), calc(-50% - .5px)) translateZ(0) scale(1, 1); }
65
+
66
+ #noty_layout__centerLeft {
67
+ top: 50%;
68
+ left: 20px;
69
+ width: 325px;
70
+ -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
71
+ transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1); }
72
+
73
+ #noty_layout__centerRight {
74
+ top: 50%;
75
+ right: 20px;
76
+ width: 325px;
77
+ -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
78
+ transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1); }
79
+
80
+ .noty_progressbar {
81
+ display: none; }
82
+
83
+ .noty_has_timeout.noty_has_progressbar .noty_progressbar {
84
+ display: block;
85
+ position: absolute;
86
+ left: 0;
87
+ bottom: 0;
88
+ height: 3px;
89
+ width: 100%;
90
+ background-color: #646464;
91
+ opacity: 0.2;
92
+ filter: alpha(opacity=10); }
93
+
94
+ .noty_bar {
95
+ -webkit-backface-visibility: hidden;
96
+ -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
97
+ -ms-transform: translate(0, 0) scale(1, 1);
98
+ transform: translate(0, 0) scale(1, 1);
99
+ -webkit-font-smoothing: subpixel-antialiased;
100
+ overflow: hidden; }
101
+
102
+ .noty_effects_open {
103
+ opacity: 0;
104
+ -webkit-transform: translate(50%);
105
+ -ms-transform: translate(50%);
106
+ transform: translate(50%);
107
+ -webkit-animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
108
+ animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
109
+ -webkit-animation-fill-mode: forwards;
110
+ animation-fill-mode: forwards; }
111
+
112
+ .noty_effects_close {
113
+ -webkit-animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
114
+ animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
115
+ -webkit-animation-fill-mode: forwards;
116
+ animation-fill-mode: forwards; }
117
+
118
+ .noty_fix_effects_height {
119
+ -webkit-animation: noty_anim_height 75ms ease-out;
120
+ animation: noty_anim_height 75ms ease-out; }
121
+
122
+ .noty_close_with_click {
123
+ cursor: pointer; }
124
+
125
+ .noty_close_button {
126
+ position: absolute;
127
+ top: 2px;
128
+ right: 2px;
129
+ font-weight: bold;
130
+ width: 20px;
131
+ height: 20px;
132
+ text-align: center;
133
+ line-height: 20px;
134
+ background-color: rgba(0, 0, 0, 0.05);
135
+ border-radius: 2px;
136
+ cursor: pointer;
137
+ -webkit-transition: all .2s ease-out;
138
+ transition: all .2s ease-out; }
139
+
140
+ .noty_close_button:hover {
141
+ background-color: rgba(0, 0, 0, 0.1); }
142
+
143
+ .noty_modal {
144
+ position: fixed;
145
+ width: 100%;
146
+ height: 100%;
147
+ background-color: #000;
148
+ z-index: 10000;
149
+ opacity: .3;
150
+ left: 0;
151
+ top: 0; }
152
+
153
+ .noty_modal.noty_modal_open {
154
+ opacity: 0;
155
+ -webkit-animation: noty_modal_in .3s ease-out;
156
+ animation: noty_modal_in .3s ease-out; }
157
+
158
+ .noty_modal.noty_modal_close {
159
+ -webkit-animation: noty_modal_out .3s ease-out;
160
+ animation: noty_modal_out .3s ease-out;
161
+ -webkit-animation-fill-mode: forwards;
162
+ animation-fill-mode: forwards; }
163
+
164
+ @-webkit-keyframes noty_modal_in {
165
+ 100% {
166
+ opacity: .3; } }
167
+
168
+ @keyframes noty_modal_in {
169
+ 100% {
170
+ opacity: .3; } }
171
+
172
+ @-webkit-keyframes noty_modal_out {
173
+ 100% {
174
+ opacity: 0; } }
175
+
176
+ @keyframes noty_modal_out {
177
+ 100% {
178
+ opacity: 0; } }
179
+
180
+ @keyframes noty_modal_out {
181
+ 100% {
182
+ opacity: 0; } }
183
+
184
+ @-webkit-keyframes noty_anim_in {
185
+ 100% {
186
+ -webkit-transform: translate(0);
187
+ transform: translate(0);
188
+ opacity: 1; } }
189
+
190
+ @keyframes noty_anim_in {
191
+ 100% {
192
+ -webkit-transform: translate(0);
193
+ transform: translate(0);
194
+ opacity: 1; } }
195
+
196
+ @-webkit-keyframes noty_anim_out {
197
+ 100% {
198
+ -webkit-transform: translate(50%);
199
+ transform: translate(50%);
200
+ opacity: 0; } }
201
+
202
+ @keyframes noty_anim_out {
203
+ 100% {
204
+ -webkit-transform: translate(50%);
205
+ transform: translate(50%);
206
+ opacity: 0; } }
207
+
208
+ @-webkit-keyframes noty_anim_height {
209
+ 100% {
210
+ height: 0; } }
211
+
212
+ @keyframes noty_anim_height {
213
+ 100% {
214
+ height: 0; } }
215
+
216
+ .noty_theme__relax.noty_bar {
217
+ margin: 4px 0;
218
+ overflow: hidden;
219
+ border-radius: 2px;
220
+ position: relative; }
221
+ .noty_theme__relax.noty_bar .noty_body {
222
+ padding: 10px; }
223
+ .noty_theme__relax.noty_bar .noty_buttons {
224
+ border-top: 1px solid #e7e7e7;
225
+ padding: 5px 10px; }
226
+
227
+ .noty_theme__relax.noty_type__alert,
228
+ .noty_theme__relax.noty_type__notification {
229
+ background-color: #fff;
230
+ border: 1px solid #dedede;
231
+ color: #444; }
232
+
233
+ .noty_theme__relax.noty_type__warning {
234
+ background-color: #FFEAA8;
235
+ border: 1px solid #FFC237;
236
+ color: #826200; }
237
+ .noty_theme__relax.noty_type__warning .noty_buttons {
238
+ border-color: #dfaa30; }
239
+
240
+ .noty_theme__relax.noty_type__error {
241
+ background-color: #FF8181;
242
+ border: 1px solid #e25353;
243
+ color: #FFF; }
244
+ .noty_theme__relax.noty_type__error .noty_buttons {
245
+ border-color: darkred; }
246
+
247
+ .noty_theme__relax.noty_type__info,
248
+ .noty_theme__relax.noty_type__information {
249
+ background-color: #78C5E7;
250
+ border: 1px solid #3badd6;
251
+ color: #FFF; }
252
+ .noty_theme__relax.noty_type__info .noty_buttons,
253
+ .noty_theme__relax.noty_type__information .noty_buttons {
254
+ border-color: #0B90C4; }
255
+
256
+ .noty_theme__relax.noty_type__success {
257
+ background-color: #BCF5BC;
258
+ border: 1px solid #7cdd77;
259
+ color: darkgreen; }
260
+ .noty_theme__relax.noty_type__success .noty_buttons {
261
+ border-color: #50C24E; }
262
+
263
+ .noty_theme__metroui.noty_bar {
264
+ margin: 4px 0;
265
+ overflow: hidden;
266
+ position: relative;
267
+ box-shadow: rgba(0, 0, 0, 0.298039) 0 0 5px 0; }
268
+ .noty_theme__metroui.noty_bar .noty_progressbar {
269
+ position: absolute;
270
+ left: 0;
271
+ bottom: 0;
272
+ height: 3px;
273
+ width: 100%;
274
+ background-color: #000;
275
+ opacity: 0.2;
276
+ filter: alpha(opacity=20); }
277
+ .noty_theme__metroui.noty_bar .noty_body {
278
+ padding: 1.25em;
279
+ font-size: 14px; }
280
+ .noty_theme__metroui.noty_bar .noty_buttons {
281
+ padding: 0 10px .5em 10px; }
282
+
283
+ .noty_theme__metroui.noty_type__alert,
284
+ .noty_theme__metroui.noty_type__notification {
285
+ background-color: #fff;
286
+ color: #1d1d1d; }
287
+
288
+ .noty_theme__metroui.noty_type__warning {
289
+ background-color: #FA6800;
290
+ color: #fff; }
291
+
292
+ .noty_theme__metroui.noty_type__error {
293
+ background-color: #CE352C;
294
+ color: #FFF; }
295
+
296
+ .noty_theme__metroui.noty_type__info,
297
+ .noty_theme__metroui.noty_type__information {
298
+ background-color: #1BA1E2;
299
+ color: #FFF; }
300
+
301
+ .noty_theme__metroui.noty_type__success {
302
+ background-color: #60A917;
303
+ color: #fff; }
304
+
305
+ .noty_theme__mint.noty_bar {
306
+ margin: 4px 0;
307
+ overflow: hidden;
308
+ border-radius: 2px;
309
+ position: relative; }
310
+ .noty_theme__mint.noty_bar .noty_body {
311
+ padding: 10px;
312
+ font-size: 14px; }
313
+ .noty_theme__mint.noty_bar .noty_buttons {
314
+ padding: 10px; }
315
+
316
+ .noty_theme__mint.noty_type__alert,
317
+ .noty_theme__mint.noty_type__notification {
318
+ background-color: #fff;
319
+ border-bottom: 1px solid #D1D1D1;
320
+ color: #2F2F2F; }
321
+
322
+ .noty_theme__mint.noty_type__warning {
323
+ background-color: #FFAE42;
324
+ border-bottom: 1px solid #E89F3C;
325
+ color: #fff; }
326
+
327
+ .noty_theme__mint.noty_type__error {
328
+ background-color: #DE636F;
329
+ border-bottom: 1px solid #CA5A65;
330
+ color: #fff; }
331
+
332
+ .noty_theme__mint.noty_type__info,
333
+ .noty_theme__mint.noty_type__information {
334
+ background-color: #7F7EFF;
335
+ border-bottom: 1px solid #7473E8;
336
+ color: #fff; }
337
+
338
+ .noty_theme__mint.noty_type__success {
339
+ background-color: #AFC765;
340
+ border-bottom: 1px solid #A0B55C;
341
+ color: #fff; }
342
+
343
+ .noty_theme__sunset.noty_bar {
344
+ margin: 4px 0;
345
+ overflow: hidden;
346
+ border-radius: 2px;
347
+ position: relative; }
348
+ .noty_theme__sunset.noty_bar .noty_body {
349
+ padding: 10px;
350
+ font-size: 14px;
351
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); }
352
+ .noty_theme__sunset.noty_bar .noty_buttons {
353
+ padding: 10px; }
354
+
355
+ .noty_theme__sunset.noty_type__alert,
356
+ .noty_theme__sunset.noty_type__notification {
357
+ background-color: #073B4C;
358
+ color: #fff; }
359
+ .noty_theme__sunset.noty_type__alert .noty_progressbar,
360
+ .noty_theme__sunset.noty_type__notification .noty_progressbar {
361
+ background-color: #fff; }
362
+
363
+ .noty_theme__sunset.noty_type__warning {
364
+ background-color: #FFD166;
365
+ color: #fff; }
366
+
367
+ .noty_theme__sunset.noty_type__error {
368
+ background-color: #EF476F;
369
+ color: #fff; }
370
+ .noty_theme__sunset.noty_type__error .noty_progressbar {
371
+ opacity: .4; }
372
+
373
+ .noty_theme__sunset.noty_type__info,
374
+ .noty_theme__sunset.noty_type__information {
375
+ background-color: #118AB2;
376
+ color: #fff; }
377
+ .noty_theme__sunset.noty_type__info .noty_progressbar,
378
+ .noty_theme__sunset.noty_type__information .noty_progressbar {
379
+ opacity: .6; }
380
+
381
+ .noty_theme__sunset.noty_type__success {
382
+ background-color: #06D6A0;
383
+ color: #fff; }
384
+
385
+ .noty_theme__bootstrap-v3.noty_bar {
386
+ margin: 4px 0;
387
+ overflow: hidden;
388
+ position: relative;
389
+ border: 1px solid transparent;
390
+ border-radius: 4px; }
391
+ .noty_theme__bootstrap-v3.noty_bar .noty_body {
392
+ padding: 15px; }
393
+ .noty_theme__bootstrap-v3.noty_bar .noty_buttons {
394
+ padding: 10px; }
395
+ .noty_theme__bootstrap-v3.noty_bar .noty_close_button {
396
+ font-size: 21px;
397
+ font-weight: 700;
398
+ line-height: 1;
399
+ color: #000;
400
+ text-shadow: 0 1px 0 #fff;
401
+ filter: alpha(opacity=20);
402
+ opacity: .2;
403
+ background: transparent; }
404
+ .noty_theme__bootstrap-v3.noty_bar .noty_close_button:hover {
405
+ background: transparent;
406
+ text-decoration: none;
407
+ cursor: pointer;
408
+ filter: alpha(opacity=50);
409
+ opacity: .5; }
410
+
411
+ .noty_theme__bootstrap-v3.noty_type__alert,
412
+ .noty_theme__bootstrap-v3.noty_type__notification {
413
+ background-color: #fff;
414
+ color: inherit; }
415
+
416
+ .noty_theme__bootstrap-v3.noty_type__warning {
417
+ background-color: #fcf8e3;
418
+ color: #8a6d3b;
419
+ border-color: #faebcc; }
420
+
421
+ .noty_theme__bootstrap-v3.noty_type__error {
422
+ background-color: #f2dede;
423
+ color: #a94442;
424
+ border-color: #ebccd1; }
425
+
426
+ .noty_theme__bootstrap-v3.noty_type__info,
427
+ .noty_theme__bootstrap-v3.noty_type__information {
428
+ background-color: #d9edf7;
429
+ color: #31708f;
430
+ border-color: #bce8f1; }
431
+
432
+ .noty_theme__bootstrap-v3.noty_type__success {
433
+ background-color: #dff0d8;
434
+ color: #3c763d;
435
+ border-color: #d6e9c6; }
436
+
437
+ .noty_theme__bootstrap-v4.noty_bar {
438
+ margin: 4px 0;
439
+ overflow: hidden;
440
+ position: relative;
441
+ border: 1px solid transparent;
442
+ border-radius: .25rem; }
443
+ .noty_theme__bootstrap-v4.noty_bar .noty_body {
444
+ padding: .75rem 1.25rem; }
445
+ .noty_theme__bootstrap-v4.noty_bar .noty_buttons {
446
+ padding: 10px; }
447
+ .noty_theme__bootstrap-v4.noty_bar .noty_close_button {
448
+ font-size: 1.5rem;
449
+ font-weight: 700;
450
+ line-height: 1;
451
+ color: #000;
452
+ text-shadow: 0 1px 0 #fff;
453
+ filter: alpha(opacity=20);
454
+ opacity: .5;
455
+ background: transparent; }
456
+ .noty_theme__bootstrap-v4.noty_bar .noty_close_button:hover {
457
+ background: transparent;
458
+ text-decoration: none;
459
+ cursor: pointer;
460
+ filter: alpha(opacity=50);
461
+ opacity: .75; }
462
+
463
+ .noty_theme__bootstrap-v4.noty_type__alert,
464
+ .noty_theme__bootstrap-v4.noty_type__notification {
465
+ background-color: #fff;
466
+ color: inherit; }
467
+
468
+ .noty_theme__bootstrap-v4.noty_type__warning {
469
+ background-color: #fcf8e3;
470
+ color: #8a6d3b;
471
+ border-color: #faebcc; }
472
+
473
+ .noty_theme__bootstrap-v4.noty_type__error {
474
+ background-color: #f2dede;
475
+ color: #a94442;
476
+ border-color: #ebccd1; }
477
+
478
+ .noty_theme__bootstrap-v4.noty_type__info,
479
+ .noty_theme__bootstrap-v4.noty_type__information {
480
+ background-color: #d9edf7;
481
+ color: #31708f;
482
+ border-color: #bce8f1; }
483
+
484
+ .noty_theme__bootstrap-v4.noty_type__success {
485
+ background-color: #dff0d8;
486
+ color: #3c763d;
487
+ border-color: #d6e9c6; }
488
+
489
+ .noty_theme__semanticui.noty_bar {
490
+ margin: 4px 0;
491
+ overflow: hidden;
492
+ position: relative;
493
+ border: 1px solid transparent;
494
+ font-size: 1em;
495
+ border-radius: .28571429rem;
496
+ box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.22) inset, 0 0 0 0 transparent; }
497
+ .noty_theme__semanticui.noty_bar .noty_body {
498
+ padding: 1em 1.5em;
499
+ line-height: 1.4285em; }
500
+ .noty_theme__semanticui.noty_bar .noty_buttons {
501
+ padding: 10px; }
502
+
503
+ .noty_theme__semanticui.noty_type__alert,
504
+ .noty_theme__semanticui.noty_type__notification {
505
+ background-color: #f8f8f9;
506
+ color: rgba(0, 0, 0, 0.87); }
507
+
508
+ .noty_theme__semanticui.noty_type__warning {
509
+ background-color: #fffaf3;
510
+ color: #573a08;
511
+ box-shadow: 0 0 0 1px #c9ba9b inset, 0 0 0 0 transparent; }
512
+
513
+ .noty_theme__semanticui.noty_type__error {
514
+ background-color: #fff6f6;
515
+ color: #9f3a38;
516
+ box-shadow: 0 0 0 1px #e0b4b4 inset, 0 0 0 0 transparent; }
517
+
518
+ .noty_theme__semanticui.noty_type__info,
519
+ .noty_theme__semanticui.noty_type__information {
520
+ background-color: #f8ffff;
521
+ color: #276f86;
522
+ box-shadow: 0 0 0 1px #a9d5de inset, 0 0 0 0 transparent; }
523
+
524
+ .noty_theme__semanticui.noty_type__success {
525
+ background-color: #fcfff5;
526
+ color: #2c662d;
527
+ box-shadow: 0 0 0 1px #a3c293 inset, 0 0 0 0 transparent; }
528
+
529
+ .noty_theme__nest.noty_bar {
530
+ margin: 0 0 15px 0;
531
+ overflow: hidden;
532
+ border-radius: 2px;
533
+ position: relative;
534
+ box-shadow: rgba(0, 0, 0, 0.098039) 5px 4px 10px 0; }
535
+ .noty_theme__nest.noty_bar .noty_body {
536
+ padding: 10px;
537
+ font-size: 14px;
538
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); }
539
+ .noty_theme__nest.noty_bar .noty_buttons {
540
+ padding: 10px; }
541
+
542
+ .noty_layout .noty_theme__nest.noty_bar {
543
+ z-index: 5; }
544
+
545
+ .noty_layout .noty_theme__nest.noty_bar:nth-child(2) {
546
+ position: absolute;
547
+ top: 0;
548
+ margin-top: 4px;
549
+ margin-right: -4px;
550
+ margin-left: 4px;
551
+ z-index: 4;
552
+ width: 100%; }
553
+
554
+ .noty_layout .noty_theme__nest.noty_bar:nth-child(3) {
555
+ position: absolute;
556
+ top: 0;
557
+ margin-top: 8px;
558
+ margin-right: -8px;
559
+ margin-left: 8px;
560
+ z-index: 3;
561
+ width: 100%; }
562
+
563
+ .noty_layout .noty_theme__nest.noty_bar:nth-child(4) {
564
+ position: absolute;
565
+ top: 0;
566
+ margin-top: 12px;
567
+ margin-right: -12px;
568
+ margin-left: 12px;
569
+ z-index: 2;
570
+ width: 100%; }
571
+
572
+ .noty_layout .noty_theme__nest.noty_bar:nth-child(5) {
573
+ position: absolute;
574
+ top: 0;
575
+ margin-top: 16px;
576
+ margin-right: -16px;
577
+ margin-left: 16px;
578
+ z-index: 1;
579
+ width: 100%; }
580
+
581
+ .noty_layout .noty_theme__nest.noty_bar:nth-child(n+6) {
582
+ position: absolute;
583
+ top: 0;
584
+ margin-top: 20px;
585
+ margin-right: -20px;
586
+ margin-left: 20px;
587
+ z-index: -1;
588
+ width: 100%; }
589
+
590
+ #noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(2),
591
+ #noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(2) {
592
+ margin-top: 4px;
593
+ margin-left: -4px;
594
+ margin-right: 4px; }
595
+
596
+ #noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(3),
597
+ #noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(3) {
598
+ margin-top: 8px;
599
+ margin-left: -8px;
600
+ margin-right: 8px; }
601
+
602
+ #noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(4),
603
+ #noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(4) {
604
+ margin-top: 12px;
605
+ margin-left: -12px;
606
+ margin-right: 12px; }
607
+
608
+ #noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(5),
609
+ #noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(5) {
610
+ margin-top: 16px;
611
+ margin-left: -16px;
612
+ margin-right: 16px; }
613
+
614
+ #noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(n+6),
615
+ #noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(n+6) {
616
+ margin-top: 20px;
617
+ margin-left: -20px;
618
+ margin-right: 20px; }
619
+
620
+ .noty_theme__nest.noty_type__alert,
621
+ .noty_theme__nest.noty_type__notification {
622
+ background-color: #073B4C;
623
+ color: #fff; }
624
+ .noty_theme__nest.noty_type__alert .noty_progressbar,
625
+ .noty_theme__nest.noty_type__notification .noty_progressbar {
626
+ background-color: #fff; }
627
+
628
+ .noty_theme__nest.noty_type__warning {
629
+ background-color: #FFD166;
630
+ color: #fff; }
631
+
632
+ .noty_theme__nest.noty_type__error {
633
+ background-color: #EF476F;
634
+ color: #fff; }
635
+ .noty_theme__nest.noty_type__error .noty_progressbar {
636
+ opacity: .4; }
637
+
638
+ .noty_theme__nest.noty_type__info,
639
+ .noty_theme__nest.noty_type__information {
640
+ background-color: #118AB2;
641
+ color: #fff; }
642
+ .noty_theme__nest.noty_type__info .noty_progressbar,
643
+ .noty_theme__nest.noty_type__information .noty_progressbar {
644
+ opacity: .6; }
645
+
646
+ .noty_theme__nest.noty_type__success {
647
+ background-color: #06D6A0;
648
+ color: #fff; }
649
+
650
+ .noty_theme__light.noty_bar {
651
+ margin: 4px 0;
652
+ overflow: hidden;
653
+ border-radius: 2px;
654
+ position: relative; }
655
+ .noty_theme__light.noty_bar .noty_body {
656
+ padding: 10px; }
657
+ .noty_theme__light.noty_bar .noty_buttons {
658
+ border-top: 1px solid #e7e7e7;
659
+ padding: 5px 10px; }
660
+
661
+ .noty_theme__light.noty_type__alert,
662
+ .noty_theme__light.noty_type__notification {
663
+ background-color: #fff;
664
+ border: 1px solid #dedede;
665
+ color: #444; }
666
+
667
+ .noty_theme__light.noty_type__warning {
668
+ background-color: #FFEAA8;
669
+ border: 1px solid #FFC237;
670
+ color: #826200; }
671
+ .noty_theme__light.noty_type__warning .noty_buttons {
672
+ border-color: #dfaa30; }
673
+
674
+ .noty_theme__light.noty_type__error {
675
+ background-color: #ED7000;
676
+ border: 1px solid #e25353;
677
+ color: #FFF; }
678
+ .noty_theme__light.noty_type__error .noty_buttons {
679
+ border-color: darkred; }
680
+
681
+ .noty_theme__light.noty_type__info,
682
+ .noty_theme__light.noty_type__information {
683
+ background-color: #78C5E7;
684
+ border: 1px solid #3badd6;
685
+ color: #FFF; }
686
+ .noty_theme__light.noty_type__info .noty_buttons,
687
+ .noty_theme__light.noty_type__information .noty_buttons {
688
+ border-color: #0B90C4; }
689
+
690
+ .noty_theme__light.noty_type__success {
691
+ background-color: #57C880;
692
+ border: 1px solid #7cdd77;
693
+ color: darkgreen; }
694
+ .noty_theme__light.noty_type__success .noty_buttons {
695
+ border-color: #50C24E; }
696
+
697
+ /*# sourceMappingURL=noty.css.map*/
@@ -0,0 +1 @@
1
+ .toast-title{font-weight:700}.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}.toast-message a,.toast-message label{color:#FFF}.toast-message a:hover{color:#CCC;text-decoration:none}.toast-close-button{position:relative;right:-.3em;top:-.3em;float:right;font-size:20px;font-weight:700;color:#FFF;-webkit-text-shadow:0 1px 0 #fff;text-shadow:0 1px 0 #fff;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80);line-height:1}.toast-close-button:focus,.toast-close-button:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}.rtl .toast-close-button{left:-.3em;float:left;right:.3em}button.toast-close-button{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.toast-top-center{top:0;right:0;width:100%}.toast-bottom-center{bottom:0;right:0;width:100%}.toast-top-full-width{top:0;right:0;width:100%}.toast-bottom-full-width{bottom:0;right:0;width:100%}.toast-top-left{top:12px;left:12px}.toast-top-right{top:12px;right:12px}.toast-bottom-right{right:12px;bottom:12px}.toast-bottom-left{bottom:12px;left:12px}#toast-container{position:fixed;z-index:999999;pointer-events:none}#toast-container *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#toast-container>div{position:relative;pointer-events:auto;overflow:hidden;margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#FFF;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80)}#toast-container>div.rtl{direction:rtl;padding:15px 50px 15px 15px;background-position:right 15px center}#toast-container>div:hover{-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;opacity:1;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);filter:alpha(opacity=100);cursor:pointer}#toast-container>.toast-info{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=)!important}#toast-container>.toast-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important}#toast-container>.toast-success{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important}#toast-container>.toast-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important}#toast-container.toast-bottom-center>div,#toast-container.toast-top-center>div{width:300px;margin-left:auto;margin-right:auto}#toast-container.toast-bottom-full-width>div,#toast-container.toast-top-full-width>div{width:96%;margin-left:auto;margin-right:auto}.toast{background-color:#030303}.toast-success{background-color:#51A351}.toast-error{background-color:#BD362F}.toast-info{background-color:#2F96B4}.toast-warning{background-color:#F89406}.toast-progress{position:absolute;left:0;bottom:0;height:4px;background-color:#000;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}@media all and (max-width:240px){#toast-container>div{padding:8px 8px 8px 50px;width:11em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:241px) and (max-width:480px){#toast-container>div{padding:8px 8px 8px 50px;width:18em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:481px) and (max-width:768px){#toast-container>div{padding:15px 15px 15px 50px;width:25em}#toast-container>div.rtl{padding:15px 50px 15px 15px}}