treport 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +7 -0
  2. data/app/controllers/connects_controller.rb +56 -0
  3. data/app/controllers/dictionaries_controller.rb +56 -0
  4. data/app/controllers/reports_controller.rb +62 -0
  5. data/app/controllers/requirements_controller.rb +60 -0
  6. data/app/controllers/series_controller.rb +60 -0
  7. data/app/models/.keep +0 -0
  8. data/app/models/connect.rb +26 -0
  9. data/app/models/dictionary.rb +4 -0
  10. data/app/models/report.rb +34 -0
  11. data/app/models/requirement.rb +42 -0
  12. data/app/models/series.rb +4 -0
  13. data/app/views/connects/_form.html.erb +68 -0
  14. data/app/views/connects/edit.html.erb +1 -0
  15. data/app/views/connects/index.html.erb +48 -0
  16. data/app/views/connects/new.html.erb +1 -0
  17. data/app/views/dictionaries/_form.html.erb +49 -0
  18. data/app/views/dictionaries/edit.html.erb +1 -0
  19. data/app/views/dictionaries/index.html.erb +42 -0
  20. data/app/views/dictionaries/new.html.erb +1 -0
  21. data/app/views/layouts/report.html.erb +54 -0
  22. data/app/views/reports/_form.html.erb +65 -0
  23. data/app/views/reports/edit.html.erb +1 -0
  24. data/app/views/reports/index.html.erb +49 -0
  25. data/app/views/reports/new.html.erb +1 -0
  26. data/app/views/requirements/_form.html.erb +72 -0
  27. data/app/views/requirements/edit.html.erb +1 -0
  28. data/app/views/requirements/index.html.erb +51 -0
  29. data/app/views/requirements/new.html.erb +1 -0
  30. data/app/views/series/_form.html.erb +47 -0
  31. data/app/views/series/edit.html.erb +1 -0
  32. data/app/views/series/index.html.erb +40 -0
  33. data/app/views/series/new.html.erb +1 -0
  34. data/app/views/templates/public_one.html.erb +75 -0
  35. data/app/views/templates/public_two.html.erb +76 -0
  36. data/app/views/templates/text.html.erb +9 -0
  37. data/db/migrate/20160607002137_create_connects.rb +15 -0
  38. data/db/migrate/20160608123333_create_reports.rb +15 -0
  39. data/db/migrate/20160608124539_create_requirements.rb +16 -0
  40. data/db/migrate/20160608124549_create_dictionaries.rb +12 -0
  41. data/db/migrate/20160608124602_create_series.rb +11 -0
  42. data/lib/generators/report/install_generator.rb +26 -0
  43. data/lib/treport/db.rb +49 -0
  44. data/lib/treport.rb +9 -0
  45. data/public/report/css/AdminLTE.css +4906 -0
  46. data/public/report/css/AdminLTE.min.css +7 -0
  47. data/public/report/css/bootstrap.min.css +6 -0
  48. data/public/report/css/skins/_all-skins.css +1799 -0
  49. data/public/report/css/skins/_all-skins.min.css +1 -0
  50. data/public/report/js/app.js +44 -0
  51. data/public/report/js/echarts.min.js +35 -0
  52. data/treport.gemspec +12 -0
  53. metadata +94 -0
@@ -0,0 +1,4906 @@
1
+ @import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic);
2
+ /*!
3
+ * AdminLTE v2.3.2
4
+ * Author: Almsaeed Studio
5
+ * Website: Almsaeed Studio <http://almsaeedstudio.com>
6
+ * License: Open source - MIT
7
+ * Please visit http://opensource.org/licenses/MIT for more information
8
+ !*/
9
+ /*
10
+ * Core: General Layout Style
11
+ * -------------------------
12
+ */
13
+ html,
14
+ body {
15
+ min-height: 100%;
16
+ }
17
+ .layout-boxed html,
18
+ .layout-boxed body {
19
+ height: 100%;
20
+ }
21
+ body {
22
+ -webkit-font-smoothing: antialiased;
23
+ -moz-osx-font-smoothing: grayscale;
24
+ font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
25
+ font-weight: 400;
26
+ overflow-x: hidden;
27
+ overflow-y: auto;
28
+ }
29
+ /* Layout */
30
+ .wrapper {
31
+ min-height: 100%;
32
+ position: relative;
33
+ overflow: hidden;
34
+ }
35
+ .wrapper:before,
36
+ .wrapper:after {
37
+ content: " ";
38
+ display: table;
39
+ }
40
+ .wrapper:after {
41
+ clear: both;
42
+ }
43
+ .layout-boxed .wrapper {
44
+ max-width: 1250px;
45
+ margin: 0 auto;
46
+ min-height: 100%;
47
+ box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
48
+ position: relative;
49
+ }
50
+ .layout-boxed {
51
+ background: url('../img/boxed-bg.jpg') repeat fixed;
52
+ }
53
+ /*
54
+ * Content Wrapper - contains the main content
55
+ * ```.right-side has been deprecated as of v2.0.0 in favor of .content-wrapper ```
56
+ */
57
+ .content-wrapper,
58
+ .right-side,
59
+ .main-footer {
60
+ -webkit-transition: -webkit-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
61
+ -moz-transition: -moz-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
62
+ -o-transition: -o-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
63
+ transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
64
+ margin-left: 230px;
65
+ z-index: 820;
66
+ }
67
+ .layout-top-nav .content-wrapper,
68
+ .layout-top-nav .right-side,
69
+ .layout-top-nav .main-footer {
70
+ margin-left: 0;
71
+ }
72
+ @media (max-width: 767px) {
73
+ .content-wrapper,
74
+ .right-side,
75
+ .main-footer {
76
+ margin-left: 0;
77
+ }
78
+ }
79
+ @media (min-width: 768px) {
80
+ .sidebar-collapse .content-wrapper,
81
+ .sidebar-collapse .right-side,
82
+ .sidebar-collapse .main-footer {
83
+ margin-left: 0;
84
+ }
85
+ }
86
+ @media (max-width: 767px) {
87
+ .sidebar-open .content-wrapper,
88
+ .sidebar-open .right-side,
89
+ .sidebar-open .main-footer {
90
+ -webkit-transform: translate(230px, 0);
91
+ -ms-transform: translate(230px, 0);
92
+ -o-transform: translate(230px, 0);
93
+ transform: translate(230px, 0);
94
+ }
95
+ }
96
+ .content-wrapper,
97
+ .right-side {
98
+ min-height: 100%;
99
+ background-color: #ecf0f5;
100
+ z-index: 800;
101
+ }
102
+ .main-footer {
103
+ background: #fff;
104
+ padding: 15px;
105
+ color: #444;
106
+ border-top: 1px solid #d2d6de;
107
+ }
108
+ /* Fixed layout */
109
+ .fixed .main-header,
110
+ .fixed .main-sidebar,
111
+ .fixed .left-side {
112
+ position: fixed;
113
+ }
114
+ .fixed .main-header {
115
+ top: 0;
116
+ right: 0;
117
+ left: 0;
118
+ }
119
+ .fixed .content-wrapper,
120
+ .fixed .right-side {
121
+ padding-top: 50px;
122
+ }
123
+ @media (max-width: 767px) {
124
+ .fixed .content-wrapper,
125
+ .fixed .right-side {
126
+ padding-top: 100px;
127
+ }
128
+ }
129
+ .fixed.layout-boxed .wrapper {
130
+ max-width: 100%;
131
+ }
132
+ body.hold-transition .content-wrapper,
133
+ body.hold-transition .right-side,
134
+ body.hold-transition .main-footer,
135
+ body.hold-transition .main-sidebar,
136
+ body.hold-transition .left-side,
137
+ body.hold-transition .main-header > .navbar,
138
+ body.hold-transition .main-header .logo {
139
+ /* Fix for IE */
140
+ -webkit-transition: none;
141
+ -o-transition: none;
142
+ transition: none;
143
+ }
144
+ /* Content */
145
+ .content {
146
+ min-height: 250px;
147
+ padding: 15px;
148
+ margin-right: auto;
149
+ margin-left: auto;
150
+ padding-left: 15px;
151
+ padding-right: 15px;
152
+ }
153
+ /* H1 - H6 font */
154
+ h1,
155
+ h2,
156
+ h3,
157
+ h4,
158
+ h5,
159
+ h6,
160
+ .h1,
161
+ .h2,
162
+ .h3,
163
+ .h4,
164
+ .h5,
165
+ .h6 {
166
+ font-family: 'Source Sans Pro', sans-serif;
167
+ }
168
+ /* General Links */
169
+ a {
170
+ color: #3c8dbc;
171
+ }
172
+ a:hover,
173
+ a:active,
174
+ a:focus {
175
+ outline: none;
176
+ text-decoration: none;
177
+ color: #72afd2;
178
+ }
179
+ /* Page Header */
180
+ .page-header {
181
+ margin: 10px 0 20px 0;
182
+ font-size: 22px;
183
+ }
184
+ .page-header > small {
185
+ color: #666;
186
+ display: block;
187
+ margin-top: 5px;
188
+ }
189
+ /*
190
+ * Component: Main Header
191
+ * ----------------------
192
+ */
193
+ .main-header {
194
+ position: relative;
195
+ max-height: 100px;
196
+ z-index: 1030;
197
+ }
198
+ .main-header > .navbar {
199
+ -webkit-transition: margin-left 0.3s ease-in-out;
200
+ -o-transition: margin-left 0.3s ease-in-out;
201
+ transition: margin-left 0.3s ease-in-out;
202
+ margin-bottom: 0;
203
+ margin-left: 230px;
204
+ border: none;
205
+ min-height: 50px;
206
+ border-radius: 0;
207
+ }
208
+ .layout-top-nav .main-header > .navbar {
209
+ margin-left: 0;
210
+ }
211
+ .main-header #navbar-search-input.form-control {
212
+ background: rgba(255, 255, 255, 0.2);
213
+ border-color: transparent;
214
+ }
215
+ .main-header #navbar-search-input.form-control:focus,
216
+ .main-header #navbar-search-input.form-control:active {
217
+ border-color: rgba(0, 0, 0, 0.1);
218
+ background: rgba(255, 255, 255, 0.9);
219
+ }
220
+ .main-header #navbar-search-input.form-control::-moz-placeholder {
221
+ color: #ccc;
222
+ opacity: 1;
223
+ }
224
+ .main-header #navbar-search-input.form-control:-ms-input-placeholder {
225
+ color: #ccc;
226
+ }
227
+ .main-header #navbar-search-input.form-control::-webkit-input-placeholder {
228
+ color: #ccc;
229
+ }
230
+ .main-header .navbar-custom-menu,
231
+ .main-header .navbar-right {
232
+ float: right;
233
+ }
234
+ @media (max-width: 991px) {
235
+ .main-header .navbar-custom-menu a,
236
+ .main-header .navbar-right a {
237
+ color: inherit;
238
+ background: transparent;
239
+ }
240
+ }
241
+ @media (max-width: 767px) {
242
+ .main-header .navbar-right {
243
+ float: none;
244
+ }
245
+ .navbar-collapse .main-header .navbar-right {
246
+ margin: 7.5px -15px;
247
+ }
248
+ .main-header .navbar-right > li {
249
+ color: inherit;
250
+ border: 0;
251
+ }
252
+ }
253
+ .main-header .sidebar-toggle {
254
+ float: left;
255
+ background-color: transparent;
256
+ background-image: none;
257
+ padding: 15px 15px;
258
+ font-family: fontAwesome;
259
+ }
260
+ .main-header .sidebar-toggle:before {
261
+ content: "\f0c9";
262
+ }
263
+ .main-header .sidebar-toggle:hover {
264
+ color: #fff;
265
+ }
266
+ .main-header .sidebar-toggle:focus,
267
+ .main-header .sidebar-toggle:active {
268
+ background: transparent;
269
+ }
270
+ .main-header .sidebar-toggle .icon-bar {
271
+ display: none;
272
+ }
273
+ .main-header .navbar .nav > li.user > a > .fa,
274
+ .main-header .navbar .nav > li.user > a > .glyphicon,
275
+ .main-header .navbar .nav > li.user > a > .ion {
276
+ margin-right: 5px;
277
+ }
278
+ .main-header .navbar .nav > li > a > .label {
279
+ position: absolute;
280
+ top: 9px;
281
+ right: 7px;
282
+ text-align: center;
283
+ font-size: 9px;
284
+ padding: 2px 3px;
285
+ line-height: .9;
286
+ }
287
+ .main-header .logo {
288
+ -webkit-transition: width 0.3s ease-in-out;
289
+ -o-transition: width 0.3s ease-in-out;
290
+ transition: width 0.3s ease-in-out;
291
+ display: block;
292
+ float: left;
293
+ height: 50px;
294
+ font-size: 20px;
295
+ line-height: 50px;
296
+ text-align: center;
297
+ width: 230px;
298
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
299
+ padding: 0 15px;
300
+ font-weight: 300;
301
+ overflow: hidden;
302
+ }
303
+ .main-header .logo .logo-lg {
304
+ display: block;
305
+ }
306
+ .main-header .logo .logo-mini {
307
+ display: none;
308
+ }
309
+ .main-header .navbar-brand {
310
+ color: #fff;
311
+ }
312
+ .content-header {
313
+ position: relative;
314
+ padding: 15px 15px 0 15px;
315
+ }
316
+ .content-header > h1 {
317
+ margin: 0;
318
+ font-size: 24px;
319
+ }
320
+ .content-header > h1 > small {
321
+ font-size: 15px;
322
+ display: inline-block;
323
+ padding-left: 4px;
324
+ font-weight: 300;
325
+ }
326
+ .content-header > .breadcrumb {
327
+ float: right;
328
+ background: transparent;
329
+ margin-top: 0;
330
+ margin-bottom: 0;
331
+ font-size: 12px;
332
+ padding: 7px 5px;
333
+ position: absolute;
334
+ top: 15px;
335
+ right: 10px;
336
+ border-radius: 2px;
337
+ }
338
+ .content-header > .breadcrumb > li > a {
339
+ color: #444;
340
+ text-decoration: none;
341
+ display: inline-block;
342
+ }
343
+ .content-header > .breadcrumb > li > a > .fa,
344
+ .content-header > .breadcrumb > li > a > .glyphicon,
345
+ .content-header > .breadcrumb > li > a > .ion {
346
+ margin-right: 5px;
347
+ }
348
+ .content-header > .breadcrumb > li + li:before {
349
+ content: '>\00a0';
350
+ }
351
+ @media (max-width: 991px) {
352
+ .content-header > .breadcrumb {
353
+ position: relative;
354
+ margin-top: 5px;
355
+ top: 0;
356
+ right: 0;
357
+ float: none;
358
+ background: #d2d6de;
359
+ padding-left: 10px;
360
+ }
361
+ .content-header > .breadcrumb li:before {
362
+ color: #97a0b3;
363
+ }
364
+ }
365
+ .navbar-toggle {
366
+ color: #fff;
367
+ border: 0;
368
+ margin: 0;
369
+ padding: 15px 15px;
370
+ }
371
+ @media (max-width: 991px) {
372
+ .navbar-custom-menu .navbar-nav > li {
373
+ float: left;
374
+ }
375
+ .navbar-custom-menu .navbar-nav {
376
+ margin: 0;
377
+ float: left;
378
+ }
379
+ .navbar-custom-menu .navbar-nav > li > a {
380
+ padding-top: 15px;
381
+ padding-bottom: 15px;
382
+ line-height: 20px;
383
+ }
384
+ }
385
+ @media (max-width: 767px) {
386
+ .main-header {
387
+ position: relative;
388
+ }
389
+ .main-header .logo,
390
+ .main-header .navbar {
391
+ width: 100%;
392
+ float: none;
393
+ }
394
+ .main-header .navbar {
395
+ margin: 0;
396
+ }
397
+ .main-header .navbar-custom-menu {
398
+ float: right;
399
+ }
400
+ }
401
+ @media (max-width: 991px) {
402
+ .navbar-collapse.pull-left {
403
+ float: none !important;
404
+ }
405
+ .navbar-collapse.pull-left + .navbar-custom-menu {
406
+ display: block;
407
+ position: absolute;
408
+ top: 0;
409
+ right: 40px;
410
+ }
411
+ }
412
+ /*
413
+ * Component: Sidebar
414
+ * ------------------
415
+ */
416
+ .main-sidebar,
417
+ .left-side {
418
+ position: absolute;
419
+ top: 0;
420
+ left: 0;
421
+ padding-top: 50px;
422
+ min-height: 100%;
423
+ width: 230px;
424
+ z-index: 810;
425
+ -webkit-transition: -webkit-transform 0.3s ease-in-out, width 0.3s ease-in-out;
426
+ -moz-transition: -moz-transform 0.3s ease-in-out, width 0.3s ease-in-out;
427
+ -o-transition: -o-transform 0.3s ease-in-out, width 0.3s ease-in-out;
428
+ transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
429
+ }
430
+ @media (max-width: 767px) {
431
+ .main-sidebar,
432
+ .left-side {
433
+ padding-top: 100px;
434
+ }
435
+ }
436
+ @media (max-width: 767px) {
437
+ .main-sidebar,
438
+ .left-side {
439
+ -webkit-transform: translate(-230px, 0);
440
+ -ms-transform: translate(-230px, 0);
441
+ -o-transform: translate(-230px, 0);
442
+ transform: translate(-230px, 0);
443
+ }
444
+ }
445
+ @media (min-width: 768px) {
446
+ .sidebar-collapse .main-sidebar,
447
+ .sidebar-collapse .left-side {
448
+ -webkit-transform: translate(-230px, 0);
449
+ -ms-transform: translate(-230px, 0);
450
+ -o-transform: translate(-230px, 0);
451
+ transform: translate(-230px, 0);
452
+ }
453
+ }
454
+ @media (max-width: 767px) {
455
+ .sidebar-open .main-sidebar,
456
+ .sidebar-open .left-side {
457
+ -webkit-transform: translate(0, 0);
458
+ -ms-transform: translate(0, 0);
459
+ -o-transform: translate(0, 0);
460
+ transform: translate(0, 0);
461
+ }
462
+ }
463
+ .sidebar {
464
+ padding-bottom: 10px;
465
+ }
466
+ .sidebar-form input:focus {
467
+ border-color: transparent;
468
+ }
469
+ .user-panel {
470
+ position: relative;
471
+ width: 100%;
472
+ padding: 10px;
473
+ overflow: hidden;
474
+ }
475
+ .user-panel:before,
476
+ .user-panel:after {
477
+ content: " ";
478
+ display: table;
479
+ }
480
+ .user-panel:after {
481
+ clear: both;
482
+ }
483
+ .user-panel > .image > img {
484
+ width: 100%;
485
+ max-width: 45px;
486
+ height: auto;
487
+ }
488
+ .user-panel > .info {
489
+ padding: 5px 5px 5px 15px;
490
+ line-height: 1;
491
+ position: absolute;
492
+ left: 55px;
493
+ }
494
+ .user-panel > .info > p {
495
+ font-weight: 600;
496
+ margin-bottom: 9px;
497
+ }
498
+ .user-panel > .info > a {
499
+ text-decoration: none;
500
+ padding-right: 5px;
501
+ margin-top: 3px;
502
+ font-size: 11px;
503
+ }
504
+ .user-panel > .info > a > .fa,
505
+ .user-panel > .info > a > .ion,
506
+ .user-panel > .info > a > .glyphicon {
507
+ margin-right: 3px;
508
+ }
509
+ .sidebar-menu {
510
+ list-style: none;
511
+ margin: 0;
512
+ padding: 0;
513
+ }
514
+ .sidebar-menu > li {
515
+ position: relative;
516
+ margin: 0;
517
+ padding: 0;
518
+ }
519
+ .sidebar-menu > li > a {
520
+ padding: 12px 5px 12px 15px;
521
+ display: block;
522
+ }
523
+ .sidebar-menu > li > a > .fa,
524
+ .sidebar-menu > li > a > .glyphicon,
525
+ .sidebar-menu > li > a > .ion {
526
+ width: 20px;
527
+ }
528
+ .sidebar-menu > li .label,
529
+ .sidebar-menu > li .badge {
530
+ margin-top: 3px;
531
+ margin-right: 5px;
532
+ }
533
+ .sidebar-menu li.header {
534
+ padding: 10px 25px 10px 15px;
535
+ font-size: 12px;
536
+ }
537
+ .sidebar-menu li > a > .fa-angle-left {
538
+ width: auto;
539
+ height: auto;
540
+ padding: 0;
541
+ margin-right: 10px;
542
+ margin-top: 3px;
543
+ }
544
+ .sidebar-menu li.active > a > .fa-angle-left {
545
+ -webkit-transform: rotate(-90deg);
546
+ -ms-transform: rotate(-90deg);
547
+ -o-transform: rotate(-90deg);
548
+ transform: rotate(-90deg);
549
+ }
550
+ .sidebar-menu li.active > .treeview-menu {
551
+ display: block;
552
+ }
553
+ .sidebar-menu .treeview-menu {
554
+ display: none;
555
+ list-style: none;
556
+ padding: 0;
557
+ margin: 0;
558
+ padding-left: 5px;
559
+ }
560
+ .sidebar-menu .treeview-menu .treeview-menu {
561
+ padding-left: 20px;
562
+ }
563
+ .sidebar-menu .treeview-menu > li {
564
+ margin: 0;
565
+ }
566
+ .sidebar-menu .treeview-menu > li > a {
567
+ padding: 5px 5px 5px 15px;
568
+ display: block;
569
+ font-size: 14px;
570
+ }
571
+ .sidebar-menu .treeview-menu > li > a > .fa,
572
+ .sidebar-menu .treeview-menu > li > a > .glyphicon,
573
+ .sidebar-menu .treeview-menu > li > a > .ion {
574
+ width: 20px;
575
+ }
576
+ .sidebar-menu .treeview-menu > li > a > .fa-angle-left,
577
+ .sidebar-menu .treeview-menu > li > a > .fa-angle-down {
578
+ width: auto;
579
+ }
580
+ /*
581
+ * Component: Sidebar Mini
582
+ */
583
+ @media (min-width: 768px) {
584
+ .sidebar-mini.sidebar-collapse .content-wrapper,
585
+ .sidebar-mini.sidebar-collapse .right-side,
586
+ .sidebar-mini.sidebar-collapse .main-footer {
587
+ margin-left: 50px !important;
588
+ z-index: 840;
589
+ }
590
+ .sidebar-mini.sidebar-collapse .main-sidebar {
591
+ -webkit-transform: translate(0, 0);
592
+ -ms-transform: translate(0, 0);
593
+ -o-transform: translate(0, 0);
594
+ transform: translate(0, 0);
595
+ width: 50px !important;
596
+ z-index: 850;
597
+ }
598
+ .sidebar-mini.sidebar-collapse .sidebar-menu > li {
599
+ position: relative;
600
+ }
601
+ .sidebar-mini.sidebar-collapse .sidebar-menu > li > a {
602
+ margin-right: 0;
603
+ }
604
+ .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span {
605
+ border-top-right-radius: 4px;
606
+ }
607
+ .sidebar-mini.sidebar-collapse .sidebar-menu > li:not(.treeview) > a > span {
608
+ border-bottom-right-radius: 4px;
609
+ }
610
+ .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu {
611
+ padding-top: 5px;
612
+ padding-bottom: 5px;
613
+ border-bottom-right-radius: 4px;
614
+ }
615
+ .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span:not(.pull-right),
616
+ .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
617
+ display: block !important;
618
+ position: absolute;
619
+ width: 180px;
620
+ left: 50px;
621
+ }
622
+ .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span {
623
+ top: 0;
624
+ margin-left: -3px;
625
+ padding: 12px 5px 12px 20px;
626
+ background-color: inherit;
627
+ }
628
+ .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
629
+ top: 44px;
630
+ margin-left: 0;
631
+ }
632
+ .sidebar-mini.sidebar-collapse .main-sidebar .user-panel > .info,
633
+ .sidebar-mini.sidebar-collapse .sidebar-form,
634
+ .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span,
635
+ .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu,
636
+ .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > .pull-right,
637
+ .sidebar-mini.sidebar-collapse .sidebar-menu li.header {
638
+ display: none !important;
639
+ -webkit-transform: translateZ(0);
640
+ }
641
+ .sidebar-mini.sidebar-collapse .main-header .logo {
642
+ width: 50px;
643
+ }
644
+ .sidebar-mini.sidebar-collapse .main-header .logo > .logo-mini {
645
+ display: block;
646
+ margin-left: -15px;
647
+ margin-right: -15px;
648
+ font-size: 18px;
649
+ }
650
+ .sidebar-mini.sidebar-collapse .main-header .logo > .logo-lg {
651
+ display: none;
652
+ }
653
+ .sidebar-mini.sidebar-collapse .main-header .navbar {
654
+ margin-left: 50px;
655
+ }
656
+ }
657
+ .sidebar-menu,
658
+ .main-sidebar .user-panel,
659
+ .sidebar-menu > li.header {
660
+ white-space: nowrap;
661
+ overflow: hidden;
662
+ }
663
+ .sidebar-menu:hover {
664
+ overflow: visible;
665
+ }
666
+ .sidebar-form,
667
+ .sidebar-menu > li.header {
668
+ overflow: hidden;
669
+ text-overflow: clip;
670
+ }
671
+ .sidebar-menu li > a {
672
+ position: relative;
673
+ }
674
+ .sidebar-menu li > a > .pull-right {
675
+ position: absolute;
676
+ right: 10px;
677
+ top: 50%;
678
+ margin-top: -7px;
679
+ }
680
+ /*
681
+ * Component: Control sidebar. By default, this is the right sidebar.
682
+ */
683
+ .control-sidebar-bg {
684
+ position: fixed;
685
+ z-index: 1000;
686
+ bottom: 0;
687
+ }
688
+ .control-sidebar-bg,
689
+ .control-sidebar {
690
+ top: 0;
691
+ right: -230px;
692
+ width: 230px;
693
+ -webkit-transition: right 0.3s ease-in-out;
694
+ -o-transition: right 0.3s ease-in-out;
695
+ transition: right 0.3s ease-in-out;
696
+ }
697
+ .control-sidebar {
698
+ position: absolute;
699
+ padding-top: 50px;
700
+ z-index: 1010;
701
+ }
702
+ @media (max-width: 768px) {
703
+ .control-sidebar {
704
+ padding-top: 100px;
705
+ }
706
+ }
707
+ .control-sidebar > .tab-content {
708
+ padding: 10px 15px;
709
+ }
710
+ .control-sidebar.control-sidebar-open,
711
+ .control-sidebar.control-sidebar-open + .control-sidebar-bg {
712
+ right: 0;
713
+ }
714
+ .control-sidebar-open .control-sidebar-bg,
715
+ .control-sidebar-open .control-sidebar {
716
+ right: 0;
717
+ }
718
+ @media (min-width: 768px) {
719
+ .control-sidebar-open .content-wrapper,
720
+ .control-sidebar-open .right-side,
721
+ .control-sidebar-open .main-footer {
722
+ margin-right: 230px;
723
+ }
724
+ }
725
+ .nav-tabs.control-sidebar-tabs > li:first-of-type > a,
726
+ .nav-tabs.control-sidebar-tabs > li:first-of-type > a:hover,
727
+ .nav-tabs.control-sidebar-tabs > li:first-of-type > a:focus {
728
+ border-left-width: 0;
729
+ }
730
+ .nav-tabs.control-sidebar-tabs > li > a {
731
+ border-radius: 0;
732
+ }
733
+ .nav-tabs.control-sidebar-tabs > li > a,
734
+ .nav-tabs.control-sidebar-tabs > li > a:hover {
735
+ border-top: none;
736
+ border-right: none;
737
+ border-left: 1px solid transparent;
738
+ border-bottom: 1px solid transparent;
739
+ }
740
+ .nav-tabs.control-sidebar-tabs > li > a .icon {
741
+ font-size: 16px;
742
+ }
743
+ .nav-tabs.control-sidebar-tabs > li.active > a,
744
+ .nav-tabs.control-sidebar-tabs > li.active > a:hover,
745
+ .nav-tabs.control-sidebar-tabs > li.active > a:focus,
746
+ .nav-tabs.control-sidebar-tabs > li.active > a:active {
747
+ border-top: none;
748
+ border-right: none;
749
+ border-bottom: none;
750
+ }
751
+ @media (max-width: 768px) {
752
+ .nav-tabs.control-sidebar-tabs {
753
+ display: table;
754
+ }
755
+ .nav-tabs.control-sidebar-tabs > li {
756
+ display: table-cell;
757
+ }
758
+ }
759
+ .control-sidebar-heading {
760
+ font-weight: 400;
761
+ font-size: 16px;
762
+ padding: 10px 0;
763
+ margin-bottom: 10px;
764
+ }
765
+ .control-sidebar-subheading {
766
+ display: block;
767
+ font-weight: 400;
768
+ font-size: 14px;
769
+ }
770
+ .control-sidebar-menu {
771
+ list-style: none;
772
+ padding: 0;
773
+ margin: 0 -15px;
774
+ }
775
+ .control-sidebar-menu > li > a {
776
+ display: block;
777
+ padding: 10px 15px;
778
+ }
779
+ .control-sidebar-menu > li > a:before,
780
+ .control-sidebar-menu > li > a:after {
781
+ content: " ";
782
+ display: table;
783
+ }
784
+ .control-sidebar-menu > li > a:after {
785
+ clear: both;
786
+ }
787
+ .control-sidebar-menu > li > a > .control-sidebar-subheading {
788
+ margin-top: 0;
789
+ }
790
+ .control-sidebar-menu .menu-icon {
791
+ float: left;
792
+ width: 35px;
793
+ height: 35px;
794
+ border-radius: 50%;
795
+ text-align: center;
796
+ line-height: 35px;
797
+ }
798
+ .control-sidebar-menu .menu-info {
799
+ margin-left: 45px;
800
+ margin-top: 3px;
801
+ }
802
+ .control-sidebar-menu .menu-info > .control-sidebar-subheading {
803
+ margin: 0;
804
+ }
805
+ .control-sidebar-menu .menu-info > p {
806
+ margin: 0;
807
+ font-size: 11px;
808
+ }
809
+ .control-sidebar-menu .progress {
810
+ margin: 0;
811
+ }
812
+ .control-sidebar-dark {
813
+ color: #b8c7ce;
814
+ }
815
+ .control-sidebar-dark,
816
+ .control-sidebar-dark + .control-sidebar-bg {
817
+ background: #222d32;
818
+ }
819
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs {
820
+ border-bottom: #1c2529;
821
+ }
822
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a {
823
+ background: #181f23;
824
+ color: #b8c7ce;
825
+ }
826
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a,
827
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
828
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus {
829
+ border-left-color: #141a1d;
830
+ border-bottom-color: #141a1d;
831
+ }
832
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
833
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus,
834
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:active {
835
+ background: #1c2529;
836
+ }
837
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover {
838
+ color: #fff;
839
+ }
840
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a,
841
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:hover,
842
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:focus,
843
+ .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:active {
844
+ background: #222d32;
845
+ color: #fff;
846
+ }
847
+ .control-sidebar-dark .control-sidebar-heading,
848
+ .control-sidebar-dark .control-sidebar-subheading {
849
+ color: #fff;
850
+ }
851
+ .control-sidebar-dark .control-sidebar-menu > li > a:hover {
852
+ background: #1e282c;
853
+ }
854
+ .control-sidebar-dark .control-sidebar-menu > li > a .menu-info > p {
855
+ color: #b8c7ce;
856
+ }
857
+ .control-sidebar-light {
858
+ color: #5e5e5e;
859
+ }
860
+ .control-sidebar-light,
861
+ .control-sidebar-light + .control-sidebar-bg {
862
+ background: #f9fafc;
863
+ border-left: 1px solid #d2d6de;
864
+ }
865
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs {
866
+ border-bottom: #d2d6de;
867
+ }
868
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a {
869
+ background: #e8ecf4;
870
+ color: #444444;
871
+ }
872
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a,
873
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
874
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus {
875
+ border-left-color: #d2d6de;
876
+ border-bottom-color: #d2d6de;
877
+ }
878
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
879
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus,
880
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:active {
881
+ background: #eff1f7;
882
+ }
883
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a,
884
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:hover,
885
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:focus,
886
+ .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:active {
887
+ background: #f9fafc;
888
+ color: #111;
889
+ }
890
+ .control-sidebar-light .control-sidebar-heading,
891
+ .control-sidebar-light .control-sidebar-subheading {
892
+ color: #111;
893
+ }
894
+ .control-sidebar-light .control-sidebar-menu {
895
+ margin-left: -14px;
896
+ }
897
+ .control-sidebar-light .control-sidebar-menu > li > a:hover {
898
+ background: #f4f4f5;
899
+ }
900
+ .control-sidebar-light .control-sidebar-menu > li > a .menu-info > p {
901
+ color: #5e5e5e;
902
+ }
903
+ /*
904
+ * Component: Dropdown menus
905
+ * -------------------------
906
+ */
907
+ /*Dropdowns in general*/
908
+ .dropdown-menu {
909
+ box-shadow: none;
910
+ border-color: #eee;
911
+ }
912
+ .dropdown-menu > li > a {
913
+ color: #777;
914
+ }
915
+ .dropdown-menu > li > a > .glyphicon,
916
+ .dropdown-menu > li > a > .fa,
917
+ .dropdown-menu > li > a > .ion {
918
+ margin-right: 10px;
919
+ }
920
+ .dropdown-menu > li > a:hover {
921
+ background-color: #e1e3e9;
922
+ color: #333;
923
+ }
924
+ .dropdown-menu > .divider {
925
+ background-color: #eee;
926
+ }
927
+ .navbar-nav > .notifications-menu > .dropdown-menu,
928
+ .navbar-nav > .messages-menu > .dropdown-menu,
929
+ .navbar-nav > .tasks-menu > .dropdown-menu {
930
+ width: 280px;
931
+ padding: 0 0 0 0;
932
+ margin: 0;
933
+ top: 100%;
934
+ }
935
+ .navbar-nav > .notifications-menu > .dropdown-menu > li,
936
+ .navbar-nav > .messages-menu > .dropdown-menu > li,
937
+ .navbar-nav > .tasks-menu > .dropdown-menu > li {
938
+ position: relative;
939
+ }
940
+ .navbar-nav > .notifications-menu > .dropdown-menu > li.header,
941
+ .navbar-nav > .messages-menu > .dropdown-menu > li.header,
942
+ .navbar-nav > .tasks-menu > .dropdown-menu > li.header {
943
+ border-top-left-radius: 4px;
944
+ border-top-right-radius: 4px;
945
+ border-bottom-right-radius: 0;
946
+ border-bottom-left-radius: 0;
947
+ background-color: #ffffff;
948
+ padding: 7px 10px;
949
+ border-bottom: 1px solid #f4f4f4;
950
+ color: #444444;
951
+ font-size: 14px;
952
+ }
953
+ .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
954
+ .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
955
+ .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
956
+ border-top-left-radius: 0;
957
+ border-top-right-radius: 0;
958
+ border-bottom-right-radius: 4px;
959
+ border-bottom-left-radius: 4px;
960
+ font-size: 12px;
961
+ background-color: #fff;
962
+ padding: 7px 10px;
963
+ border-bottom: 1px solid #eeeeee;
964
+ color: #444 !important;
965
+ text-align: center;
966
+ }
967
+ @media (max-width: 991px) {
968
+ .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
969
+ .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
970
+ .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
971
+ background: #fff !important;
972
+ color: #444 !important;
973
+ }
974
+ }
975
+ .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover,
976
+ .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover,
977
+ .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover {
978
+ text-decoration: none;
979
+ font-weight: normal;
980
+ }
981
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu,
982
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu,
983
+ .navbar-nav > .tasks-menu > .dropdown-menu > li .menu {
984
+ max-height: 200px;
985
+ margin: 0;
986
+ padding: 0;
987
+ list-style: none;
988
+ overflow-x: hidden;
989
+ }
990
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a,
991
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a,
992
+ .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
993
+ display: block;
994
+ white-space: nowrap;
995
+ /* Prevent text from breaking */
996
+ border-bottom: 1px solid #f4f4f4;
997
+ }
998
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover,
999
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover,
1000
+ .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover {
1001
+ background: #f4f4f4;
1002
+ text-decoration: none;
1003
+ }
1004
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a {
1005
+ color: #444444;
1006
+ overflow: hidden;
1007
+ text-overflow: ellipsis;
1008
+ padding: 10px;
1009
+ }
1010
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon,
1011
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa,
1012
+ .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion {
1013
+ width: 20px;
1014
+ }
1015
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a {
1016
+ margin: 0;
1017
+ padding: 10px 10px;
1018
+ }
1019
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img {
1020
+ margin: auto 10px auto auto;
1021
+ width: 40px;
1022
+ height: 40px;
1023
+ }
1024
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 {
1025
+ padding: 0;
1026
+ margin: 0 0 0 45px;
1027
+ color: #444444;
1028
+ font-size: 15px;
1029
+ position: relative;
1030
+ }
1031
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small {
1032
+ color: #999999;
1033
+ font-size: 10px;
1034
+ position: absolute;
1035
+ top: 0;
1036
+ right: 0;
1037
+ }
1038
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p {
1039
+ margin: 0 0 0 45px;
1040
+ font-size: 12px;
1041
+ color: #888888;
1042
+ }
1043
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before,
1044
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
1045
+ content: " ";
1046
+ display: table;
1047
+ }
1048
+ .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
1049
+ clear: both;
1050
+ }
1051
+ .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
1052
+ padding: 10px;
1053
+ }
1054
+ .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 {
1055
+ font-size: 14px;
1056
+ padding: 0;
1057
+ margin: 0 0 10px 0;
1058
+ color: #666666;
1059
+ }
1060
+ .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > .progress {
1061
+ padding: 0;
1062
+ margin: 0;
1063
+ }
1064
+ .navbar-nav > .user-menu > .dropdown-menu {
1065
+ border-top-right-radius: 0;
1066
+ border-top-left-radius: 0;
1067
+ padding: 1px 0 0 0;
1068
+ border-top-width: 0;
1069
+ width: 280px;
1070
+ }
1071
+ .navbar-nav > .user-menu > .dropdown-menu,
1072
+ .navbar-nav > .user-menu > .dropdown-menu > .user-body {
1073
+ border-bottom-right-radius: 4px;
1074
+ border-bottom-left-radius: 4px;
1075
+ }
1076
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-header {
1077
+ height: 175px;
1078
+ padding: 10px;
1079
+ text-align: center;
1080
+ }
1081
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
1082
+ z-index: 5;
1083
+ height: 90px;
1084
+ width: 90px;
1085
+ border: 3px solid;
1086
+ border-color: transparent;
1087
+ border-color: rgba(255, 255, 255, 0.2);
1088
+ }
1089
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
1090
+ z-index: 5;
1091
+ color: #fff;
1092
+ color: rgba(255, 255, 255, 0.8);
1093
+ font-size: 17px;
1094
+ margin-top: 10px;
1095
+ }
1096
+ .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small {
1097
+ display: block;
1098
+ font-size: 12px;
1099
+ }
1100
+ .navbar-nav > .user-menu > .dropdown-menu > .user-body {
1101
+ padding: 15px;
1102
+ border-bottom: 1px solid #f4f4f4;
1103
+ border-top: 1px solid #dddddd;
1104
+ }
1105
+ .navbar-nav > .user-menu > .dropdown-menu > .user-body:before,
1106
+ .navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
1107
+ content: " ";
1108
+ display: table;
1109
+ }
1110
+ .navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
1111
+ clear: both;
1112
+ }
1113
+ .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
1114
+ color: #444 !important;
1115
+ }
1116
+ @media (max-width: 991px) {
1117
+ .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
1118
+ background: #fff !important;
1119
+ color: #444 !important;
1120
+ }
1121
+ }
1122
+ .navbar-nav > .user-menu > .dropdown-menu > .user-footer {
1123
+ background-color: #f9f9f9;
1124
+ padding: 10px;
1125
+ }
1126
+ .navbar-nav > .user-menu > .dropdown-menu > .user-footer:before,
1127
+ .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
1128
+ content: " ";
1129
+ display: table;
1130
+ }
1131
+ .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
1132
+ clear: both;
1133
+ }
1134
+ .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default {
1135
+ color: #666666;
1136
+ }
1137
+ @media (max-width: 991px) {
1138
+ .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default:hover {
1139
+ background-color: #f9f9f9;
1140
+ }
1141
+ }
1142
+ .navbar-nav > .user-menu .user-image {
1143
+ float: left;
1144
+ width: 25px;
1145
+ height: 25px;
1146
+ border-radius: 50%;
1147
+ margin-right: 10px;
1148
+ margin-top: -2px;
1149
+ }
1150
+ @media (max-width: 767px) {
1151
+ .navbar-nav > .user-menu .user-image {
1152
+ float: none;
1153
+ margin-right: 0;
1154
+ margin-top: -8px;
1155
+ line-height: 10px;
1156
+ }
1157
+ }
1158
+ /* Add fade animation to dropdown menus by appending
1159
+ the class .animated-dropdown-menu to the .dropdown-menu ul (or ol)*/
1160
+ .open:not(.dropup) > .animated-dropdown-menu {
1161
+ backface-visibility: visible !important;
1162
+ -webkit-animation: flipInX 0.7s both;
1163
+ -o-animation: flipInX 0.7s both;
1164
+ animation: flipInX 0.7s both;
1165
+ }
1166
+ @keyframes flipInX {
1167
+ 0% {
1168
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
1169
+ transition-timing-function: ease-in;
1170
+ opacity: 0;
1171
+ }
1172
+ 40% {
1173
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
1174
+ transition-timing-function: ease-in;
1175
+ }
1176
+ 60% {
1177
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
1178
+ opacity: 1;
1179
+ }
1180
+ 80% {
1181
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
1182
+ }
1183
+ 100% {
1184
+ transform: perspective(400px);
1185
+ }
1186
+ }
1187
+ @-webkit-keyframes flipInX {
1188
+ 0% {
1189
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
1190
+ -webkit-transition-timing-function: ease-in;
1191
+ opacity: 0;
1192
+ }
1193
+ 40% {
1194
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
1195
+ -webkit-transition-timing-function: ease-in;
1196
+ }
1197
+ 60% {
1198
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
1199
+ opacity: 1;
1200
+ }
1201
+ 80% {
1202
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
1203
+ }
1204
+ 100% {
1205
+ -webkit-transform: perspective(400px);
1206
+ }
1207
+ }
1208
+ /* Fix dropdown menu in navbars */
1209
+ .navbar-custom-menu > .navbar-nav > li {
1210
+ position: relative;
1211
+ }
1212
+ .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
1213
+ position: absolute;
1214
+ right: 0;
1215
+ left: auto;
1216
+ }
1217
+ @media (max-width: 991px) {
1218
+ .navbar-custom-menu > .navbar-nav {
1219
+ float: right;
1220
+ }
1221
+ .navbar-custom-menu > .navbar-nav > li {
1222
+ position: static;
1223
+ }
1224
+ .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
1225
+ position: absolute;
1226
+ right: 5%;
1227
+ left: auto;
1228
+ border: 1px solid #ddd;
1229
+ background: #fff;
1230
+ }
1231
+ }
1232
+ /*
1233
+ * Component: Form
1234
+ * ---------------
1235
+ */
1236
+ .form-control {
1237
+ border-radius: 0;
1238
+ box-shadow: none;
1239
+ border-color: #d2d6de;
1240
+ }
1241
+ .form-control:focus {
1242
+ border-color: #3c8dbc;
1243
+ box-shadow: none;
1244
+ }
1245
+ .form-control::-moz-placeholder,
1246
+ .form-control:-ms-input-placeholder,
1247
+ .form-control::-webkit-input-placeholder {
1248
+ color: #bbb;
1249
+ opacity: 1;
1250
+ }
1251
+ .form-control:not(select) {
1252
+ -webkit-appearance: none;
1253
+ -moz-appearance: none;
1254
+ appearance: none;
1255
+ }
1256
+ .form-group.has-success label {
1257
+ color: #00a65a;
1258
+ }
1259
+ .form-group.has-success .form-control {
1260
+ border-color: #00a65a;
1261
+ box-shadow: none;
1262
+ }
1263
+ .form-group.has-warning label {
1264
+ color: #f39c12;
1265
+ }
1266
+ .form-group.has-warning .form-control {
1267
+ border-color: #f39c12;
1268
+ box-shadow: none;
1269
+ }
1270
+ .form-group.has-error label {
1271
+ color: #dd4b39;
1272
+ }
1273
+ .form-group.has-error .form-control {
1274
+ border-color: #dd4b39;
1275
+ box-shadow: none;
1276
+ }
1277
+ /* Input group */
1278
+ .input-group .input-group-addon {
1279
+ border-radius: 0;
1280
+ border-color: #d2d6de;
1281
+ background-color: #fff;
1282
+ }
1283
+ /* button groups */
1284
+ .btn-group-vertical .btn.btn-flat:first-of-type,
1285
+ .btn-group-vertical .btn.btn-flat:last-of-type {
1286
+ border-radius: 0;
1287
+ }
1288
+ .icheck > label {
1289
+ padding-left: 0;
1290
+ }
1291
+ /* support Font Awesome icons in form-control */
1292
+ .form-control-feedback.fa {
1293
+ line-height: 34px;
1294
+ }
1295
+ .input-lg + .form-control-feedback.fa,
1296
+ .input-group-lg + .form-control-feedback.fa,
1297
+ .form-group-lg .form-control + .form-control-feedback.fa {
1298
+ line-height: 46px;
1299
+ }
1300
+ .input-sm + .form-control-feedback.fa,
1301
+ .input-group-sm + .form-control-feedback.fa,
1302
+ .form-group-sm .form-control + .form-control-feedback.fa {
1303
+ line-height: 30px;
1304
+ }
1305
+ /*
1306
+ * Component: Progress Bar
1307
+ * -----------------------
1308
+ */
1309
+ .progress,
1310
+ .progress > .progress-bar {
1311
+ -webkit-box-shadow: none;
1312
+ box-shadow: none;
1313
+ }
1314
+ .progress,
1315
+ .progress > .progress-bar,
1316
+ .progress .progress-bar,
1317
+ .progress > .progress-bar .progress-bar {
1318
+ border-radius: 1px;
1319
+ }
1320
+ /* size variation */
1321
+ .progress.sm,
1322
+ .progress-sm {
1323
+ height: 10px;
1324
+ }
1325
+ .progress.sm,
1326
+ .progress-sm,
1327
+ .progress.sm .progress-bar,
1328
+ .progress-sm .progress-bar {
1329
+ border-radius: 1px;
1330
+ }
1331
+ .progress.xs,
1332
+ .progress-xs {
1333
+ height: 7px;
1334
+ }
1335
+ .progress.xs,
1336
+ .progress-xs,
1337
+ .progress.xs .progress-bar,
1338
+ .progress-xs .progress-bar {
1339
+ border-radius: 1px;
1340
+ }
1341
+ .progress.xxs,
1342
+ .progress-xxs {
1343
+ height: 3px;
1344
+ }
1345
+ .progress.xxs,
1346
+ .progress-xxs,
1347
+ .progress.xxs .progress-bar,
1348
+ .progress-xxs .progress-bar {
1349
+ border-radius: 1px;
1350
+ }
1351
+ /* Vertical bars */
1352
+ .progress.vertical {
1353
+ position: relative;
1354
+ width: 30px;
1355
+ height: 200px;
1356
+ display: inline-block;
1357
+ margin-right: 10px;
1358
+ }
1359
+ .progress.vertical > .progress-bar {
1360
+ width: 100%;
1361
+ position: absolute;
1362
+ bottom: 0;
1363
+ }
1364
+ .progress.vertical.sm,
1365
+ .progress.vertical.progress-sm {
1366
+ width: 20px;
1367
+ }
1368
+ .progress.vertical.xs,
1369
+ .progress.vertical.progress-xs {
1370
+ width: 10px;
1371
+ }
1372
+ .progress.vertical.xxs,
1373
+ .progress.vertical.progress-xxs {
1374
+ width: 3px;
1375
+ }
1376
+ .progress-group .progress-text {
1377
+ font-weight: 600;
1378
+ }
1379
+ .progress-group .progress-number {
1380
+ float: right;
1381
+ }
1382
+ /* Remove margins from progress bars when put in a table */
1383
+ .table tr > td .progress {
1384
+ margin: 0;
1385
+ }
1386
+ .progress-bar-light-blue,
1387
+ .progress-bar-primary {
1388
+ background-color: #3c8dbc;
1389
+ }
1390
+ .progress-striped .progress-bar-light-blue,
1391
+ .progress-striped .progress-bar-primary {
1392
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1393
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1394
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1395
+ }
1396
+ .progress-bar-green,
1397
+ .progress-bar-success {
1398
+ background-color: #00a65a;
1399
+ }
1400
+ .progress-striped .progress-bar-green,
1401
+ .progress-striped .progress-bar-success {
1402
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1403
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1404
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1405
+ }
1406
+ .progress-bar-aqua,
1407
+ .progress-bar-info {
1408
+ background-color: #00c0ef;
1409
+ }
1410
+ .progress-striped .progress-bar-aqua,
1411
+ .progress-striped .progress-bar-info {
1412
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1413
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1414
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1415
+ }
1416
+ .progress-bar-yellow,
1417
+ .progress-bar-warning {
1418
+ background-color: #f39c12;
1419
+ }
1420
+ .progress-striped .progress-bar-yellow,
1421
+ .progress-striped .progress-bar-warning {
1422
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1423
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1424
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1425
+ }
1426
+ .progress-bar-red,
1427
+ .progress-bar-danger {
1428
+ background-color: #dd4b39;
1429
+ }
1430
+ .progress-striped .progress-bar-red,
1431
+ .progress-striped .progress-bar-danger {
1432
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1433
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1434
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
1435
+ }
1436
+ /*
1437
+ * Component: Small Box
1438
+ * --------------------
1439
+ */
1440
+ .small-box {
1441
+ border-radius: 2px;
1442
+ position: relative;
1443
+ display: block;
1444
+ margin-bottom: 20px;
1445
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
1446
+ }
1447
+ .small-box > .inner {
1448
+ padding: 10px;
1449
+ }
1450
+ .small-box > .small-box-footer {
1451
+ position: relative;
1452
+ text-align: center;
1453
+ padding: 3px 0;
1454
+ color: #fff;
1455
+ color: rgba(255, 255, 255, 0.8);
1456
+ display: block;
1457
+ z-index: 10;
1458
+ background: rgba(0, 0, 0, 0.1);
1459
+ text-decoration: none;
1460
+ }
1461
+ .small-box > .small-box-footer:hover {
1462
+ color: #fff;
1463
+ background: rgba(0, 0, 0, 0.15);
1464
+ }
1465
+ .small-box h3 {
1466
+ font-size: 38px;
1467
+ font-weight: bold;
1468
+ margin: 0 0 10px 0;
1469
+ white-space: nowrap;
1470
+ padding: 0;
1471
+ }
1472
+ .small-box p {
1473
+ font-size: 15px;
1474
+ }
1475
+ .small-box p > small {
1476
+ display: block;
1477
+ color: #f9f9f9;
1478
+ font-size: 13px;
1479
+ margin-top: 5px;
1480
+ }
1481
+ .small-box h3,
1482
+ .small-box p {
1483
+ z-index: 5;
1484
+ }
1485
+ .small-box .icon {
1486
+ -webkit-transition: all 0.3s linear;
1487
+ -o-transition: all 0.3s linear;
1488
+ transition: all 0.3s linear;
1489
+ position: absolute;
1490
+ top: -10px;
1491
+ right: 10px;
1492
+ z-index: 0;
1493
+ font-size: 90px;
1494
+ color: rgba(0, 0, 0, 0.15);
1495
+ }
1496
+ .small-box:hover {
1497
+ text-decoration: none;
1498
+ color: #f9f9f9;
1499
+ }
1500
+ .small-box:hover .icon {
1501
+ font-size: 95px;
1502
+ }
1503
+ @media (max-width: 767px) {
1504
+ .small-box {
1505
+ text-align: center;
1506
+ }
1507
+ .small-box .icon {
1508
+ display: none;
1509
+ }
1510
+ .small-box p {
1511
+ font-size: 12px;
1512
+ }
1513
+ }
1514
+ /*
1515
+ * Component: Box
1516
+ * --------------
1517
+ */
1518
+ .box {
1519
+ position: relative;
1520
+ border-radius: 3px;
1521
+ background: #ffffff;
1522
+ border-top: 3px solid #d2d6de;
1523
+ margin-bottom: 20px;
1524
+ width: 100%;
1525
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
1526
+ }
1527
+ .box.box-primary {
1528
+ border-top-color: #3c8dbc;
1529
+ }
1530
+ .box.box-info {
1531
+ border-top-color: #00c0ef;
1532
+ }
1533
+ .box.box-danger {
1534
+ border-top-color: #dd4b39;
1535
+ }
1536
+ .box.box-warning {
1537
+ border-top-color: #f39c12;
1538
+ }
1539
+ .box.box-success {
1540
+ border-top-color: #00a65a;
1541
+ }
1542
+ .box.box-default {
1543
+ border-top-color: #d2d6de;
1544
+ }
1545
+ .box.collapsed-box .box-body,
1546
+ .box.collapsed-box .box-footer {
1547
+ display: none;
1548
+ }
1549
+ .box .nav-stacked > li {
1550
+ border-bottom: 1px solid #f4f4f4;
1551
+ margin: 0;
1552
+ }
1553
+ .box .nav-stacked > li:last-of-type {
1554
+ border-bottom: none;
1555
+ }
1556
+ .box.height-control .box-body {
1557
+ max-height: 300px;
1558
+ overflow: auto;
1559
+ }
1560
+ .box .border-right {
1561
+ border-right: 1px solid #f4f4f4;
1562
+ }
1563
+ .box .border-left {
1564
+ border-left: 1px solid #f4f4f4;
1565
+ }
1566
+ .box.box-solid {
1567
+ border-top: 0;
1568
+ }
1569
+ .box.box-solid > .box-header .btn.btn-default {
1570
+ background: transparent;
1571
+ }
1572
+ .box.box-solid > .box-header .btn:hover,
1573
+ .box.box-solid > .box-header a:hover {
1574
+ background: rgba(0, 0, 0, 0.1);
1575
+ }
1576
+ .box.box-solid.box-default {
1577
+ border: 1px solid #d2d6de;
1578
+ }
1579
+ .box.box-solid.box-default > .box-header {
1580
+ color: #444444;
1581
+ background: #d2d6de;
1582
+ background-color: #d2d6de;
1583
+ }
1584
+ .box.box-solid.box-default > .box-header a,
1585
+ .box.box-solid.box-default > .box-header .btn {
1586
+ color: #444444;
1587
+ }
1588
+ .box.box-solid.box-primary {
1589
+ border: 1px solid #3c8dbc;
1590
+ }
1591
+ .box.box-solid.box-primary > .box-header {
1592
+ color: #ffffff;
1593
+ background: #3c8dbc;
1594
+ background-color: #3c8dbc;
1595
+ }
1596
+ .box.box-solid.box-primary > .box-header a,
1597
+ .box.box-solid.box-primary > .box-header .btn {
1598
+ color: #ffffff;
1599
+ }
1600
+ .box.box-solid.box-info {
1601
+ border: 1px solid #00c0ef;
1602
+ }
1603
+ .box.box-solid.box-info > .box-header {
1604
+ color: #ffffff;
1605
+ background: #00c0ef;
1606
+ background-color: #00c0ef;
1607
+ }
1608
+ .box.box-solid.box-info > .box-header a,
1609
+ .box.box-solid.box-info > .box-header .btn {
1610
+ color: #ffffff;
1611
+ }
1612
+ .box.box-solid.box-danger {
1613
+ border: 1px solid #dd4b39;
1614
+ }
1615
+ .box.box-solid.box-danger > .box-header {
1616
+ color: #ffffff;
1617
+ background: #dd4b39;
1618
+ background-color: #dd4b39;
1619
+ }
1620
+ .box.box-solid.box-danger > .box-header a,
1621
+ .box.box-solid.box-danger > .box-header .btn {
1622
+ color: #ffffff;
1623
+ }
1624
+ .box.box-solid.box-warning {
1625
+ border: 1px solid #f39c12;
1626
+ }
1627
+ .box.box-solid.box-warning > .box-header {
1628
+ color: #ffffff;
1629
+ background: #f39c12;
1630
+ background-color: #f39c12;
1631
+ }
1632
+ .box.box-solid.box-warning > .box-header a,
1633
+ .box.box-solid.box-warning > .box-header .btn {
1634
+ color: #ffffff;
1635
+ }
1636
+ .box.box-solid.box-success {
1637
+ border: 1px solid #00a65a;
1638
+ }
1639
+ .box.box-solid.box-success > .box-header {
1640
+ color: #ffffff;
1641
+ background: #00a65a;
1642
+ background-color: #00a65a;
1643
+ }
1644
+ .box.box-solid.box-success > .box-header a,
1645
+ .box.box-solid.box-success > .box-header .btn {
1646
+ color: #ffffff;
1647
+ }
1648
+ .box.box-solid > .box-header > .box-tools .btn {
1649
+ border: 0;
1650
+ box-shadow: none;
1651
+ }
1652
+ .box.box-solid[class*='bg'] > .box-header {
1653
+ color: #fff;
1654
+ }
1655
+ .box .box-group > .box {
1656
+ margin-bottom: 5px;
1657
+ }
1658
+ .box .knob-label {
1659
+ text-align: center;
1660
+ color: #333;
1661
+ font-weight: 100;
1662
+ font-size: 12px;
1663
+ margin-bottom: 0.3em;
1664
+ }
1665
+ .box > .overlay,
1666
+ .overlay-wrapper > .overlay,
1667
+ .box > .loading-img,
1668
+ .overlay-wrapper > .loading-img {
1669
+ position: absolute;
1670
+ top: 0;
1671
+ left: 0;
1672
+ width: 100%;
1673
+ height: 100%;
1674
+ }
1675
+ .box .overlay,
1676
+ .overlay-wrapper .overlay {
1677
+ z-index: 50;
1678
+ background: rgba(255, 255, 255, 0.7);
1679
+ border-radius: 3px;
1680
+ }
1681
+ .box .overlay > .fa,
1682
+ .overlay-wrapper .overlay > .fa {
1683
+ position: absolute;
1684
+ top: 50%;
1685
+ left: 50%;
1686
+ margin-left: -15px;
1687
+ margin-top: -15px;
1688
+ color: #000;
1689
+ font-size: 30px;
1690
+ }
1691
+ .box .overlay.dark,
1692
+ .overlay-wrapper .overlay.dark {
1693
+ background: rgba(0, 0, 0, 0.5);
1694
+ }
1695
+ .box-header:before,
1696
+ .box-body:before,
1697
+ .box-footer:before,
1698
+ .box-header:after,
1699
+ .box-body:after,
1700
+ .box-footer:after {
1701
+ content: " ";
1702
+ display: table;
1703
+ }
1704
+ .box-header:after,
1705
+ .box-body:after,
1706
+ .box-footer:after {
1707
+ clear: both;
1708
+ }
1709
+ .box-header {
1710
+ color: #444;
1711
+ display: block;
1712
+ padding: 10px;
1713
+ position: relative;
1714
+ }
1715
+ .box-header.with-border {
1716
+ border-bottom: 1px solid #f4f4f4;
1717
+ }
1718
+ .collapsed-box .box-header.with-border {
1719
+ border-bottom: none;
1720
+ }
1721
+ .box-header > .fa,
1722
+ .box-header > .glyphicon,
1723
+ .box-header > .ion,
1724
+ .box-header .box-title {
1725
+ display: inline-block;
1726
+ font-size: 18px;
1727
+ margin: 0;
1728
+ line-height: 1;
1729
+ }
1730
+ .box-header > .fa,
1731
+ .box-header > .glyphicon,
1732
+ .box-header > .ion {
1733
+ margin-right: 5px;
1734
+ }
1735
+ .box-header > .box-tools {
1736
+ position: absolute;
1737
+ right: 10px;
1738
+ top: 5px;
1739
+ }
1740
+ .box-header > .box-tools [data-toggle="tooltip"] {
1741
+ position: relative;
1742
+ }
1743
+ .box-header > .box-tools.pull-right .dropdown-menu {
1744
+ right: 0;
1745
+ left: auto;
1746
+ }
1747
+ .btn-box-tool {
1748
+ padding: 5px;
1749
+ font-size: 12px;
1750
+ background: transparent;
1751
+ color: #97a0b3;
1752
+ }
1753
+ .open .btn-box-tool,
1754
+ .btn-box-tool:hover {
1755
+ color: #606c84;
1756
+ }
1757
+ .btn-box-tool.btn:active {
1758
+ box-shadow: none;
1759
+ }
1760
+ .box-body {
1761
+ border-top-left-radius: 0;
1762
+ border-top-right-radius: 0;
1763
+ border-bottom-right-radius: 3px;
1764
+ border-bottom-left-radius: 3px;
1765
+ padding: 10px;
1766
+ }
1767
+ .no-header .box-body {
1768
+ border-top-right-radius: 3px;
1769
+ border-top-left-radius: 3px;
1770
+ }
1771
+ .box-body > .table {
1772
+ margin-bottom: 0;
1773
+ }
1774
+ .box-body .fc {
1775
+ margin-top: 5px;
1776
+ }
1777
+ .box-body .full-width-chart {
1778
+ margin: -19px;
1779
+ }
1780
+ .box-body.no-padding .full-width-chart {
1781
+ margin: -9px;
1782
+ }
1783
+ .box-body .box-pane {
1784
+ border-top-left-radius: 0;
1785
+ border-top-right-radius: 0;
1786
+ border-bottom-right-radius: 0;
1787
+ border-bottom-left-radius: 3px;
1788
+ }
1789
+ .box-body .box-pane-right {
1790
+ border-top-left-radius: 0;
1791
+ border-top-right-radius: 0;
1792
+ border-bottom-right-radius: 3px;
1793
+ border-bottom-left-radius: 0;
1794
+ }
1795
+ .box-footer {
1796
+ border-top-left-radius: 0;
1797
+ border-top-right-radius: 0;
1798
+ border-bottom-right-radius: 3px;
1799
+ border-bottom-left-radius: 3px;
1800
+ border-top: 1px solid #f4f4f4;
1801
+ padding: 10px;
1802
+ background-color: #ffffff;
1803
+ }
1804
+ .chart-legend {
1805
+ margin: 10px 0;
1806
+ }
1807
+ @media (max-width: 991px) {
1808
+ .chart-legend > li {
1809
+ float: left;
1810
+ margin-right: 10px;
1811
+ }
1812
+ }
1813
+ .box-comments {
1814
+ background: #f7f7f7;
1815
+ }
1816
+ .box-comments .box-comment {
1817
+ padding: 8px 0;
1818
+ border-bottom: 1px solid #eee;
1819
+ }
1820
+ .box-comments .box-comment:before,
1821
+ .box-comments .box-comment:after {
1822
+ content: " ";
1823
+ display: table;
1824
+ }
1825
+ .box-comments .box-comment:after {
1826
+ clear: both;
1827
+ }
1828
+ .box-comments .box-comment:last-of-type {
1829
+ border-bottom: 0;
1830
+ }
1831
+ .box-comments .box-comment:first-of-type {
1832
+ padding-top: 0;
1833
+ }
1834
+ .box-comments .box-comment img {
1835
+ float: left;
1836
+ }
1837
+ .box-comments .comment-text {
1838
+ margin-left: 40px;
1839
+ color: #555;
1840
+ }
1841
+ .box-comments .username {
1842
+ color: #444;
1843
+ display: block;
1844
+ font-weight: 600;
1845
+ }
1846
+ .box-comments .text-muted {
1847
+ font-weight: 400;
1848
+ font-size: 12px;
1849
+ }
1850
+ /* Widget: TODO LIST */
1851
+ .todo-list {
1852
+ margin: 0;
1853
+ padding: 0;
1854
+ list-style: none;
1855
+ overflow: auto;
1856
+ }
1857
+ .todo-list > li {
1858
+ border-radius: 2px;
1859
+ padding: 10px;
1860
+ background: #f4f4f4;
1861
+ margin-bottom: 2px;
1862
+ border-left: 2px solid #e6e7e8;
1863
+ color: #444;
1864
+ }
1865
+ .todo-list > li:last-of-type {
1866
+ margin-bottom: 0;
1867
+ }
1868
+ .todo-list > li > input[type='checkbox'] {
1869
+ margin: 0 10px 0 5px;
1870
+ }
1871
+ .todo-list > li .text {
1872
+ display: inline-block;
1873
+ margin-left: 5px;
1874
+ font-weight: 600;
1875
+ }
1876
+ .todo-list > li .label {
1877
+ margin-left: 10px;
1878
+ font-size: 9px;
1879
+ }
1880
+ .todo-list > li .tools {
1881
+ display: none;
1882
+ float: right;
1883
+ color: #dd4b39;
1884
+ }
1885
+ .todo-list > li .tools > .fa,
1886
+ .todo-list > li .tools > .glyphicon,
1887
+ .todo-list > li .tools > .ion {
1888
+ margin-right: 5px;
1889
+ cursor: pointer;
1890
+ }
1891
+ .todo-list > li:hover .tools {
1892
+ display: inline-block;
1893
+ }
1894
+ .todo-list > li.done {
1895
+ color: #999;
1896
+ }
1897
+ .todo-list > li.done .text {
1898
+ text-decoration: line-through;
1899
+ font-weight: 500;
1900
+ }
1901
+ .todo-list > li.done .label {
1902
+ background: #d2d6de !important;
1903
+ }
1904
+ .todo-list .danger {
1905
+ border-left-color: #dd4b39;
1906
+ }
1907
+ .todo-list .warning {
1908
+ border-left-color: #f39c12;
1909
+ }
1910
+ .todo-list .info {
1911
+ border-left-color: #00c0ef;
1912
+ }
1913
+ .todo-list .success {
1914
+ border-left-color: #00a65a;
1915
+ }
1916
+ .todo-list .primary {
1917
+ border-left-color: #3c8dbc;
1918
+ }
1919
+ .todo-list .handle {
1920
+ display: inline-block;
1921
+ cursor: move;
1922
+ margin: 0 5px;
1923
+ }
1924
+ /* Chat widget (DEPRECATED - this will be removed in the next major release. Use Direct Chat instead)*/
1925
+ .chat {
1926
+ padding: 5px 20px 5px 10px;
1927
+ }
1928
+ .chat .item {
1929
+ margin-bottom: 10px;
1930
+ }
1931
+ .chat .item:before,
1932
+ .chat .item:after {
1933
+ content: " ";
1934
+ display: table;
1935
+ }
1936
+ .chat .item:after {
1937
+ clear: both;
1938
+ }
1939
+ .chat .item > img {
1940
+ width: 40px;
1941
+ height: 40px;
1942
+ border: 2px solid transparent;
1943
+ border-radius: 50%;
1944
+ }
1945
+ .chat .item > .online {
1946
+ border: 2px solid #00a65a;
1947
+ }
1948
+ .chat .item > .offline {
1949
+ border: 2px solid #dd4b39;
1950
+ }
1951
+ .chat .item > .message {
1952
+ margin-left: 55px;
1953
+ margin-top: -40px;
1954
+ }
1955
+ .chat .item > .message > .name {
1956
+ display: block;
1957
+ font-weight: 600;
1958
+ }
1959
+ .chat .item > .attachment {
1960
+ border-radius: 3px;
1961
+ background: #f4f4f4;
1962
+ margin-left: 65px;
1963
+ margin-right: 15px;
1964
+ padding: 10px;
1965
+ }
1966
+ .chat .item > .attachment > h4 {
1967
+ margin: 0 0 5px 0;
1968
+ font-weight: 600;
1969
+ font-size: 14px;
1970
+ }
1971
+ .chat .item > .attachment > p,
1972
+ .chat .item > .attachment > .filename {
1973
+ font-weight: 600;
1974
+ font-size: 13px;
1975
+ font-style: italic;
1976
+ margin: 0;
1977
+ }
1978
+ .chat .item > .attachment:before,
1979
+ .chat .item > .attachment:after {
1980
+ content: " ";
1981
+ display: table;
1982
+ }
1983
+ .chat .item > .attachment:after {
1984
+ clear: both;
1985
+ }
1986
+ .box-input {
1987
+ max-width: 200px;
1988
+ }
1989
+ .modal .panel-body {
1990
+ color: #444;
1991
+ }
1992
+ /*
1993
+ * Component: Info Box
1994
+ * -------------------
1995
+ */
1996
+ .info-box {
1997
+ display: block;
1998
+ min-height: 90px;
1999
+ background: #fff;
2000
+ width: 100%;
2001
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
2002
+ border-radius: 2px;
2003
+ margin-bottom: 15px;
2004
+ }
2005
+ .info-box small {
2006
+ font-size: 14px;
2007
+ }
2008
+ .info-box .progress {
2009
+ background: rgba(0, 0, 0, 0.2);
2010
+ margin: 5px -10px 5px -10px;
2011
+ height: 2px;
2012
+ }
2013
+ .info-box .progress,
2014
+ .info-box .progress .progress-bar {
2015
+ border-radius: 0;
2016
+ }
2017
+ .info-box .progress .progress-bar {
2018
+ background: #fff;
2019
+ }
2020
+ .info-box-icon {
2021
+ border-top-left-radius: 2px;
2022
+ border-top-right-radius: 0;
2023
+ border-bottom-right-radius: 0;
2024
+ border-bottom-left-radius: 2px;
2025
+ display: block;
2026
+ float: left;
2027
+ height: 90px;
2028
+ width: 90px;
2029
+ text-align: center;
2030
+ font-size: 45px;
2031
+ line-height: 90px;
2032
+ background: rgba(0, 0, 0, 0.2);
2033
+ }
2034
+ .info-box-icon > img {
2035
+ max-width: 100%;
2036
+ }
2037
+ .info-box-content {
2038
+ padding: 5px 10px;
2039
+ margin-left: 90px;
2040
+ }
2041
+ .info-box-number {
2042
+ display: block;
2043
+ font-weight: bold;
2044
+ font-size: 18px;
2045
+ }
2046
+ .progress-description,
2047
+ .info-box-text {
2048
+ display: block;
2049
+ font-size: 14px;
2050
+ white-space: nowrap;
2051
+ overflow: hidden;
2052
+ text-overflow: ellipsis;
2053
+ }
2054
+ .info-box-text {
2055
+ text-transform: uppercase;
2056
+ }
2057
+ .info-box-more {
2058
+ display: block;
2059
+ }
2060
+ .progress-description {
2061
+ margin: 0;
2062
+ }
2063
+ /*
2064
+ * Component: Timeline
2065
+ * -------------------
2066
+ */
2067
+ .timeline {
2068
+ position: relative;
2069
+ margin: 0 0 30px 0;
2070
+ padding: 0;
2071
+ list-style: none;
2072
+ }
2073
+ .timeline:before {
2074
+ content: '';
2075
+ position: absolute;
2076
+ top: 0;
2077
+ bottom: 0;
2078
+ width: 4px;
2079
+ background: #ddd;
2080
+ left: 31px;
2081
+ margin: 0;
2082
+ border-radius: 2px;
2083
+ }
2084
+ .timeline > li {
2085
+ position: relative;
2086
+ margin-right: 10px;
2087
+ margin-bottom: 15px;
2088
+ }
2089
+ .timeline > li:before,
2090
+ .timeline > li:after {
2091
+ content: " ";
2092
+ display: table;
2093
+ }
2094
+ .timeline > li:after {
2095
+ clear: both;
2096
+ }
2097
+ .timeline > li > .timeline-item {
2098
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
2099
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
2100
+ border-radius: 3px;
2101
+ margin-top: 0;
2102
+ background: #fff;
2103
+ color: #444;
2104
+ margin-left: 60px;
2105
+ margin-right: 15px;
2106
+ padding: 0;
2107
+ position: relative;
2108
+ }
2109
+ .timeline > li > .timeline-item > .time {
2110
+ color: #999;
2111
+ float: right;
2112
+ padding: 10px;
2113
+ font-size: 12px;
2114
+ }
2115
+ .timeline > li > .timeline-item > .timeline-header {
2116
+ margin: 0;
2117
+ color: #555;
2118
+ border-bottom: 1px solid #f4f4f4;
2119
+ padding: 10px;
2120
+ font-size: 16px;
2121
+ line-height: 1.1;
2122
+ }
2123
+ .timeline > li > .timeline-item > .timeline-header > a {
2124
+ font-weight: 600;
2125
+ }
2126
+ .timeline > li > .timeline-item > .timeline-body,
2127
+ .timeline > li > .timeline-item > .timeline-footer {
2128
+ padding: 10px;
2129
+ }
2130
+ .timeline > li > .fa,
2131
+ .timeline > li > .glyphicon,
2132
+ .timeline > li > .ion {
2133
+ width: 30px;
2134
+ height: 30px;
2135
+ font-size: 15px;
2136
+ line-height: 30px;
2137
+ position: absolute;
2138
+ color: #666;
2139
+ background: #d2d6de;
2140
+ border-radius: 50%;
2141
+ text-align: center;
2142
+ left: 18px;
2143
+ top: 0;
2144
+ }
2145
+ .timeline > .time-label > span {
2146
+ font-weight: 600;
2147
+ padding: 5px;
2148
+ display: inline-block;
2149
+ background-color: #fff;
2150
+ border-radius: 4px;
2151
+ }
2152
+ .timeline-inverse > li > .timeline-item {
2153
+ background: #f0f0f0;
2154
+ border: 1px solid #ddd;
2155
+ -webkit-box-shadow: none;
2156
+ box-shadow: none;
2157
+ }
2158
+ .timeline-inverse > li > .timeline-item > .timeline-header {
2159
+ border-bottom-color: #ddd;
2160
+ }
2161
+ /*
2162
+ * Component: Button
2163
+ * -----------------
2164
+ */
2165
+ .btn {
2166
+ border-radius: 3px;
2167
+ -webkit-box-shadow: none;
2168
+ box-shadow: none;
2169
+ border: 1px solid transparent;
2170
+ }
2171
+ .btn.uppercase {
2172
+ text-transform: uppercase;
2173
+ }
2174
+ .btn.btn-flat {
2175
+ border-radius: 0;
2176
+ -webkit-box-shadow: none;
2177
+ -moz-box-shadow: none;
2178
+ box-shadow: none;
2179
+ border-width: 1px;
2180
+ }
2181
+ .btn:active {
2182
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2183
+ -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2184
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2185
+ }
2186
+ .btn:focus {
2187
+ outline: none;
2188
+ }
2189
+ .btn.btn-file {
2190
+ position: relative;
2191
+ overflow: hidden;
2192
+ }
2193
+ .btn.btn-file > input[type='file'] {
2194
+ position: absolute;
2195
+ top: 0;
2196
+ right: 0;
2197
+ min-width: 100%;
2198
+ min-height: 100%;
2199
+ font-size: 100px;
2200
+ text-align: right;
2201
+ opacity: 0;
2202
+ filter: alpha(opacity=0);
2203
+ outline: none;
2204
+ background: white;
2205
+ cursor: inherit;
2206
+ display: block;
2207
+ }
2208
+ .btn-default {
2209
+ background-color: #f4f4f4;
2210
+ color: #444;
2211
+ border-color: #ddd;
2212
+ }
2213
+ .btn-default:hover,
2214
+ .btn-default:active,
2215
+ .btn-default.hover {
2216
+ background-color: #e7e7e7;
2217
+ }
2218
+ .btn-primary {
2219
+ background-color: #3c8dbc;
2220
+ border-color: #367fa9;
2221
+ }
2222
+ .btn-primary:hover,
2223
+ .btn-primary:active,
2224
+ .btn-primary.hover {
2225
+ background-color: #367fa9;
2226
+ }
2227
+ .btn-success {
2228
+ background-color: #00a65a;
2229
+ border-color: #008d4c;
2230
+ }
2231
+ .btn-success:hover,
2232
+ .btn-success:active,
2233
+ .btn-success.hover {
2234
+ background-color: #008d4c;
2235
+ }
2236
+ .btn-info {
2237
+ background-color: #00c0ef;
2238
+ border-color: #00acd6;
2239
+ }
2240
+ .btn-info:hover,
2241
+ .btn-info:active,
2242
+ .btn-info.hover {
2243
+ background-color: #00acd6;
2244
+ }
2245
+ .btn-danger {
2246
+ background-color: #dd4b39;
2247
+ border-color: #d73925;
2248
+ }
2249
+ .btn-danger:hover,
2250
+ .btn-danger:active,
2251
+ .btn-danger.hover {
2252
+ background-color: #d73925;
2253
+ }
2254
+ .btn-warning {
2255
+ background-color: #f39c12;
2256
+ border-color: #e08e0b;
2257
+ }
2258
+ .btn-warning:hover,
2259
+ .btn-warning:active,
2260
+ .btn-warning.hover {
2261
+ background-color: #e08e0b;
2262
+ }
2263
+ .btn-outline {
2264
+ border: 1px solid #fff;
2265
+ background: transparent;
2266
+ color: #fff;
2267
+ }
2268
+ .btn-outline:hover,
2269
+ .btn-outline:focus,
2270
+ .btn-outline:active {
2271
+ color: rgba(255, 255, 255, 0.7);
2272
+ border-color: rgba(255, 255, 255, 0.7);
2273
+ }
2274
+ .btn-link {
2275
+ -webkit-box-shadow: none;
2276
+ box-shadow: none;
2277
+ }
2278
+ .btn[class*='bg-']:hover {
2279
+ -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
2280
+ box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
2281
+ }
2282
+ .btn-app {
2283
+ border-radius: 3px;
2284
+ position: relative;
2285
+ padding: 15px 5px;
2286
+ margin: 0 0 10px 10px;
2287
+ min-width: 80px;
2288
+ height: 60px;
2289
+ text-align: center;
2290
+ color: #666;
2291
+ border: 1px solid #ddd;
2292
+ background-color: #f4f4f4;
2293
+ font-size: 12px;
2294
+ }
2295
+ .btn-app > .fa,
2296
+ .btn-app > .glyphicon,
2297
+ .btn-app > .ion {
2298
+ font-size: 20px;
2299
+ display: block;
2300
+ }
2301
+ .btn-app:hover {
2302
+ background: #f4f4f4;
2303
+ color: #444;
2304
+ border-color: #aaa;
2305
+ }
2306
+ .btn-app:active,
2307
+ .btn-app:focus {
2308
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2309
+ -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2310
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2311
+ }
2312
+ .btn-app > .badge {
2313
+ position: absolute;
2314
+ top: -3px;
2315
+ right: -10px;
2316
+ font-size: 10px;
2317
+ font-weight: 400;
2318
+ }
2319
+ /*
2320
+ * Component: Callout
2321
+ * ------------------
2322
+ */
2323
+ .callout {
2324
+ border-radius: 3px;
2325
+ margin: 0 0 20px 0;
2326
+ padding: 15px 30px 15px 15px;
2327
+ border-left: 5px solid #eee;
2328
+ }
2329
+ .callout a {
2330
+ color: #fff;
2331
+ text-decoration: underline;
2332
+ }
2333
+ .callout a:hover {
2334
+ color: #eee;
2335
+ }
2336
+ .callout h4 {
2337
+ margin-top: 0;
2338
+ font-weight: 600;
2339
+ }
2340
+ .callout p:last-child {
2341
+ margin-bottom: 0;
2342
+ }
2343
+ .callout code,
2344
+ .callout .highlight {
2345
+ background-color: #fff;
2346
+ }
2347
+ .callout.callout-danger {
2348
+ border-color: #c23321;
2349
+ }
2350
+ .callout.callout-warning {
2351
+ border-color: #c87f0a;
2352
+ }
2353
+ .callout.callout-info {
2354
+ border-color: #0097bc;
2355
+ }
2356
+ .callout.callout-success {
2357
+ border-color: #00733e;
2358
+ }
2359
+ /*
2360
+ * Component: alert
2361
+ * ----------------
2362
+ */
2363
+ .alert {
2364
+ border-radius: 3px;
2365
+ }
2366
+ .alert h4 {
2367
+ font-weight: 600;
2368
+ }
2369
+ .alert .icon {
2370
+ margin-right: 10px;
2371
+ }
2372
+ .alert .close {
2373
+ color: #000;
2374
+ opacity: 0.2;
2375
+ filter: alpha(opacity=20);
2376
+ }
2377
+ .alert .close:hover {
2378
+ opacity: 0.5;
2379
+ filter: alpha(opacity=50);
2380
+ }
2381
+ .alert a {
2382
+ color: #fff;
2383
+ text-decoration: underline;
2384
+ }
2385
+ .alert-success {
2386
+ border-color: #008d4c;
2387
+ }
2388
+ .alert-danger,
2389
+ .alert-error {
2390
+ border-color: #d73925;
2391
+ }
2392
+ .alert-warning {
2393
+ border-color: #e08e0b;
2394
+ }
2395
+ .alert-info {
2396
+ border-color: #00acd6;
2397
+ }
2398
+ /*
2399
+ * Component: Nav
2400
+ * --------------
2401
+ */
2402
+ .nav > li > a:hover,
2403
+ .nav > li > a:active,
2404
+ .nav > li > a:focus {
2405
+ color: #444;
2406
+ background: #f7f7f7;
2407
+ }
2408
+ /* NAV PILLS */
2409
+ .nav-pills > li > a {
2410
+ border-radius: 0;
2411
+ border-top: 3px solid transparent;
2412
+ color: #444;
2413
+ }
2414
+ .nav-pills > li > a > .fa,
2415
+ .nav-pills > li > a > .glyphicon,
2416
+ .nav-pills > li > a > .ion {
2417
+ margin-right: 5px;
2418
+ }
2419
+ .nav-pills > li.active > a,
2420
+ .nav-pills > li.active > a:hover,
2421
+ .nav-pills > li.active > a:focus {
2422
+ border-top-color: #3c8dbc;
2423
+ }
2424
+ .nav-pills > li.active > a {
2425
+ font-weight: 600;
2426
+ }
2427
+ /* NAV STACKED */
2428
+ .nav-stacked > li > a {
2429
+ border-radius: 0;
2430
+ border-top: 0;
2431
+ border-left: 3px solid transparent;
2432
+ color: #444;
2433
+ }
2434
+ .nav-stacked > li.active > a,
2435
+ .nav-stacked > li.active > a:hover {
2436
+ background: transparent;
2437
+ color: #444;
2438
+ border-top: 0;
2439
+ border-left-color: #3c8dbc;
2440
+ }
2441
+ .nav-stacked > li.header {
2442
+ border-bottom: 1px solid #ddd;
2443
+ color: #777;
2444
+ margin-bottom: 10px;
2445
+ padding: 5px 10px;
2446
+ text-transform: uppercase;
2447
+ }
2448
+ /* NAV TABS */
2449
+ .nav-tabs-custom {
2450
+ margin-bottom: 20px;
2451
+ background: #fff;
2452
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
2453
+ border-radius: 3px;
2454
+ }
2455
+ .nav-tabs-custom > .nav-tabs {
2456
+ margin: 0;
2457
+ border-bottom-color: #f4f4f4;
2458
+ border-top-right-radius: 3px;
2459
+ border-top-left-radius: 3px;
2460
+ }
2461
+ .nav-tabs-custom > .nav-tabs > li {
2462
+ border-top: 3px solid transparent;
2463
+ margin-bottom: -2px;
2464
+ margin-right: 5px;
2465
+ }
2466
+ .nav-tabs-custom > .nav-tabs > li > a {
2467
+ color: #444;
2468
+ border-radius: 0;
2469
+ }
2470
+ .nav-tabs-custom > .nav-tabs > li > a.text-muted {
2471
+ color: #999;
2472
+ }
2473
+ .nav-tabs-custom > .nav-tabs > li > a,
2474
+ .nav-tabs-custom > .nav-tabs > li > a:hover {
2475
+ background: transparent;
2476
+ margin: 0;
2477
+ }
2478
+ .nav-tabs-custom > .nav-tabs > li > a:hover {
2479
+ color: #999;
2480
+ }
2481
+ .nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,
2482
+ .nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,
2483
+ .nav-tabs-custom > .nav-tabs > li:not(.active) > a:active {
2484
+ border-color: transparent;
2485
+ }
2486
+ .nav-tabs-custom > .nav-tabs > li.active {
2487
+ border-top-color: #3c8dbc;
2488
+ }
2489
+ .nav-tabs-custom > .nav-tabs > li.active > a,
2490
+ .nav-tabs-custom > .nav-tabs > li.active:hover > a {
2491
+ background-color: #fff;
2492
+ color: #444;
2493
+ }
2494
+ .nav-tabs-custom > .nav-tabs > li.active > a {
2495
+ border-top-color: transparent;
2496
+ border-left-color: #f4f4f4;
2497
+ border-right-color: #f4f4f4;
2498
+ }
2499
+ .nav-tabs-custom > .nav-tabs > li:first-of-type {
2500
+ margin-left: 0;
2501
+ }
2502
+ .nav-tabs-custom > .nav-tabs > li:first-of-type.active > a {
2503
+ border-left-color: transparent;
2504
+ }
2505
+ .nav-tabs-custom > .nav-tabs.pull-right {
2506
+ float: none !important;
2507
+ }
2508
+ .nav-tabs-custom > .nav-tabs.pull-right > li {
2509
+ float: right;
2510
+ }
2511
+ .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type {
2512
+ margin-right: 0;
2513
+ }
2514
+ .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type > a {
2515
+ border-left-width: 1px;
2516
+ }
2517
+ .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
2518
+ border-left-color: #f4f4f4;
2519
+ border-right-color: transparent;
2520
+ }
2521
+ .nav-tabs-custom > .nav-tabs > li.header {
2522
+ line-height: 35px;
2523
+ padding: 0 10px;
2524
+ font-size: 20px;
2525
+ color: #444;
2526
+ }
2527
+ .nav-tabs-custom > .nav-tabs > li.header > .fa,
2528
+ .nav-tabs-custom > .nav-tabs > li.header > .glyphicon,
2529
+ .nav-tabs-custom > .nav-tabs > li.header > .ion {
2530
+ margin-right: 5px;
2531
+ }
2532
+ .nav-tabs-custom > .tab-content {
2533
+ background: #fff;
2534
+ padding: 10px;
2535
+ border-bottom-right-radius: 3px;
2536
+ border-bottom-left-radius: 3px;
2537
+ }
2538
+ .nav-tabs-custom .dropdown.open > a:active,
2539
+ .nav-tabs-custom .dropdown.open > a:focus {
2540
+ background: transparent;
2541
+ color: #999;
2542
+ }
2543
+ .nav-tabs-custom.tab-primary > .nav-tabs > li.active {
2544
+ border-top-color: #3c8dbc;
2545
+ }
2546
+ .nav-tabs-custom.tab-info > .nav-tabs > li.active {
2547
+ border-top-color: #00c0ef;
2548
+ }
2549
+ .nav-tabs-custom.tab-danger > .nav-tabs > li.active {
2550
+ border-top-color: #dd4b39;
2551
+ }
2552
+ .nav-tabs-custom.tab-warning > .nav-tabs > li.active {
2553
+ border-top-color: #f39c12;
2554
+ }
2555
+ .nav-tabs-custom.tab-success > .nav-tabs > li.active {
2556
+ border-top-color: #00a65a;
2557
+ }
2558
+ .nav-tabs-custom.tab-default > .nav-tabs > li.active {
2559
+ border-top-color: #d2d6de;
2560
+ }
2561
+ /* PAGINATION */
2562
+ .pagination > li > a {
2563
+ background: #fafafa;
2564
+ color: #666;
2565
+ }
2566
+ .pagination.pagination-flat > li > a {
2567
+ border-radius: 0 !important;
2568
+ }
2569
+ /*
2570
+ * Component: Products List
2571
+ * ------------------------
2572
+ */
2573
+ .products-list {
2574
+ list-style: none;
2575
+ margin: 0;
2576
+ padding: 0;
2577
+ }
2578
+ .products-list > .item {
2579
+ border-radius: 3px;
2580
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
2581
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
2582
+ padding: 10px 0;
2583
+ background: #fff;
2584
+ }
2585
+ .products-list > .item:before,
2586
+ .products-list > .item:after {
2587
+ content: " ";
2588
+ display: table;
2589
+ }
2590
+ .products-list > .item:after {
2591
+ clear: both;
2592
+ }
2593
+ .products-list .product-img {
2594
+ float: left;
2595
+ }
2596
+ .products-list .product-img img {
2597
+ width: 50px;
2598
+ height: 50px;
2599
+ }
2600
+ .products-list .product-info {
2601
+ margin-left: 60px;
2602
+ }
2603
+ .products-list .product-title {
2604
+ font-weight: 600;
2605
+ }
2606
+ .products-list .product-description {
2607
+ display: block;
2608
+ color: #999;
2609
+ overflow: hidden;
2610
+ white-space: nowrap;
2611
+ text-overflow: ellipsis;
2612
+ }
2613
+ .product-list-in-box > .item {
2614
+ -webkit-box-shadow: none;
2615
+ box-shadow: none;
2616
+ border-radius: 0;
2617
+ border-bottom: 1px solid #f4f4f4;
2618
+ }
2619
+ .product-list-in-box > .item:last-of-type {
2620
+ border-bottom-width: 0;
2621
+ }
2622
+ /*
2623
+ * Component: Table
2624
+ * ----------------
2625
+ */
2626
+ .table > thead > tr > th,
2627
+ .table > tbody > tr > th,
2628
+ .table > tfoot > tr > th,
2629
+ .table > thead > tr > td,
2630
+ .table > tbody > tr > td,
2631
+ .table > tfoot > tr > td {
2632
+ border-top: 1px solid #f4f4f4;
2633
+ }
2634
+ .table > thead > tr > th {
2635
+ border-bottom: 2px solid #f4f4f4;
2636
+ }
2637
+ .table tr td .progress {
2638
+ margin-top: 5px;
2639
+ }
2640
+ .table-bordered {
2641
+ border: 1px solid #f4f4f4;
2642
+ }
2643
+ .table-bordered > thead > tr > th,
2644
+ .table-bordered > tbody > tr > th,
2645
+ .table-bordered > tfoot > tr > th,
2646
+ .table-bordered > thead > tr > td,
2647
+ .table-bordered > tbody > tr > td,
2648
+ .table-bordered > tfoot > tr > td {
2649
+ border: 1px solid #f4f4f4;
2650
+ }
2651
+ .table-bordered > thead > tr > th,
2652
+ .table-bordered > thead > tr > td {
2653
+ border-bottom-width: 2px;
2654
+ }
2655
+ .table.no-border,
2656
+ .table.no-border td,
2657
+ .table.no-border th {
2658
+ border: 0;
2659
+ }
2660
+ /* .text-center in tables */
2661
+ table.text-center,
2662
+ table.text-center td,
2663
+ table.text-center th {
2664
+ text-align: center;
2665
+ }
2666
+ .table.align th {
2667
+ text-align: left;
2668
+ }
2669
+ .table.align td {
2670
+ text-align: right;
2671
+ }
2672
+ /*
2673
+ * Component: Label
2674
+ * ----------------
2675
+ */
2676
+ .label-default {
2677
+ background-color: #d2d6de;
2678
+ color: #444;
2679
+ }
2680
+ /*
2681
+ * Component: Direct Chat
2682
+ * ----------------------
2683
+ */
2684
+ .direct-chat .box-body {
2685
+ border-bottom-right-radius: 0;
2686
+ border-bottom-left-radius: 0;
2687
+ position: relative;
2688
+ overflow-x: hidden;
2689
+ padding: 0;
2690
+ }
2691
+ .direct-chat.chat-pane-open .direct-chat-contacts {
2692
+ -webkit-transform: translate(0, 0);
2693
+ -ms-transform: translate(0, 0);
2694
+ -o-transform: translate(0, 0);
2695
+ transform: translate(0, 0);
2696
+ }
2697
+ .direct-chat-messages {
2698
+ -webkit-transform: translate(0, 0);
2699
+ -ms-transform: translate(0, 0);
2700
+ -o-transform: translate(0, 0);
2701
+ transform: translate(0, 0);
2702
+ padding: 10px;
2703
+ height: 250px;
2704
+ overflow: auto;
2705
+ }
2706
+ .direct-chat-msg,
2707
+ .direct-chat-text {
2708
+ display: block;
2709
+ }
2710
+ .direct-chat-msg {
2711
+ margin-bottom: 10px;
2712
+ }
2713
+ .direct-chat-msg:before,
2714
+ .direct-chat-msg:after {
2715
+ content: " ";
2716
+ display: table;
2717
+ }
2718
+ .direct-chat-msg:after {
2719
+ clear: both;
2720
+ }
2721
+ .direct-chat-messages,
2722
+ .direct-chat-contacts {
2723
+ -webkit-transition: -webkit-transform 0.5s ease-in-out;
2724
+ -moz-transition: -moz-transform 0.5s ease-in-out;
2725
+ -o-transition: -o-transform 0.5s ease-in-out;
2726
+ transition: transform 0.5s ease-in-out;
2727
+ }
2728
+ .direct-chat-text {
2729
+ border-radius: 5px;
2730
+ position: relative;
2731
+ padding: 5px 10px;
2732
+ background: #d2d6de;
2733
+ border: 1px solid #d2d6de;
2734
+ margin: 5px 0 0 50px;
2735
+ color: #444444;
2736
+ }
2737
+ .direct-chat-text:after,
2738
+ .direct-chat-text:before {
2739
+ position: absolute;
2740
+ right: 100%;
2741
+ top: 15px;
2742
+ border: solid transparent;
2743
+ border-right-color: #d2d6de;
2744
+ content: ' ';
2745
+ height: 0;
2746
+ width: 0;
2747
+ pointer-events: none;
2748
+ }
2749
+ .direct-chat-text:after {
2750
+ border-width: 5px;
2751
+ margin-top: -5px;
2752
+ }
2753
+ .direct-chat-text:before {
2754
+ border-width: 6px;
2755
+ margin-top: -6px;
2756
+ }
2757
+ .right .direct-chat-text {
2758
+ margin-right: 50px;
2759
+ margin-left: 0;
2760
+ }
2761
+ .right .direct-chat-text:after,
2762
+ .right .direct-chat-text:before {
2763
+ right: auto;
2764
+ left: 100%;
2765
+ border-right-color: transparent;
2766
+ border-left-color: #d2d6de;
2767
+ }
2768
+ .direct-chat-img {
2769
+ border-radius: 50%;
2770
+ float: left;
2771
+ width: 40px;
2772
+ height: 40px;
2773
+ }
2774
+ .right .direct-chat-img {
2775
+ float: right;
2776
+ }
2777
+ .direct-chat-info {
2778
+ display: block;
2779
+ margin-bottom: 2px;
2780
+ font-size: 12px;
2781
+ }
2782
+ .direct-chat-name {
2783
+ font-weight: 600;
2784
+ }
2785
+ .direct-chat-timestamp {
2786
+ color: #999;
2787
+ }
2788
+ .direct-chat-contacts-open .direct-chat-contacts {
2789
+ -webkit-transform: translate(0, 0);
2790
+ -ms-transform: translate(0, 0);
2791
+ -o-transform: translate(0, 0);
2792
+ transform: translate(0, 0);
2793
+ }
2794
+ .direct-chat-contacts {
2795
+ -webkit-transform: translate(101%, 0);
2796
+ -ms-transform: translate(101%, 0);
2797
+ -o-transform: translate(101%, 0);
2798
+ transform: translate(101%, 0);
2799
+ position: absolute;
2800
+ top: 0;
2801
+ bottom: 0;
2802
+ height: 250px;
2803
+ width: 100%;
2804
+ background: #222d32;
2805
+ color: #fff;
2806
+ overflow: auto;
2807
+ }
2808
+ .contacts-list > li {
2809
+ border-bottom: 1px solid rgba(0, 0, 0, 0.2);
2810
+ padding: 10px;
2811
+ margin: 0;
2812
+ }
2813
+ .contacts-list > li:before,
2814
+ .contacts-list > li:after {
2815
+ content: " ";
2816
+ display: table;
2817
+ }
2818
+ .contacts-list > li:after {
2819
+ clear: both;
2820
+ }
2821
+ .contacts-list > li:last-of-type {
2822
+ border-bottom: none;
2823
+ }
2824
+ .contacts-list-img {
2825
+ border-radius: 50%;
2826
+ width: 40px;
2827
+ float: left;
2828
+ }
2829
+ .contacts-list-info {
2830
+ margin-left: 45px;
2831
+ color: #fff;
2832
+ }
2833
+ .contacts-list-name,
2834
+ .contacts-list-status {
2835
+ display: block;
2836
+ }
2837
+ .contacts-list-name {
2838
+ font-weight: 600;
2839
+ }
2840
+ .contacts-list-status {
2841
+ font-size: 12px;
2842
+ }
2843
+ .contacts-list-date {
2844
+ color: #aaa;
2845
+ font-weight: normal;
2846
+ }
2847
+ .contacts-list-msg {
2848
+ color: #999;
2849
+ }
2850
+ .direct-chat-danger .right > .direct-chat-text {
2851
+ background: #dd4b39;
2852
+ border-color: #dd4b39;
2853
+ color: #ffffff;
2854
+ }
2855
+ .direct-chat-danger .right > .direct-chat-text:after,
2856
+ .direct-chat-danger .right > .direct-chat-text:before {
2857
+ border-left-color: #dd4b39;
2858
+ }
2859
+ .direct-chat-primary .right > .direct-chat-text {
2860
+ background: #3c8dbc;
2861
+ border-color: #3c8dbc;
2862
+ color: #ffffff;
2863
+ }
2864
+ .direct-chat-primary .right > .direct-chat-text:after,
2865
+ .direct-chat-primary .right > .direct-chat-text:before {
2866
+ border-left-color: #3c8dbc;
2867
+ }
2868
+ .direct-chat-warning .right > .direct-chat-text {
2869
+ background: #f39c12;
2870
+ border-color: #f39c12;
2871
+ color: #ffffff;
2872
+ }
2873
+ .direct-chat-warning .right > .direct-chat-text:after,
2874
+ .direct-chat-warning .right > .direct-chat-text:before {
2875
+ border-left-color: #f39c12;
2876
+ }
2877
+ .direct-chat-info .right > .direct-chat-text {
2878
+ background: #00c0ef;
2879
+ border-color: #00c0ef;
2880
+ color: #ffffff;
2881
+ }
2882
+ .direct-chat-info .right > .direct-chat-text:after,
2883
+ .direct-chat-info .right > .direct-chat-text:before {
2884
+ border-left-color: #00c0ef;
2885
+ }
2886
+ .direct-chat-success .right > .direct-chat-text {
2887
+ background: #00a65a;
2888
+ border-color: #00a65a;
2889
+ color: #ffffff;
2890
+ }
2891
+ .direct-chat-success .right > .direct-chat-text:after,
2892
+ .direct-chat-success .right > .direct-chat-text:before {
2893
+ border-left-color: #00a65a;
2894
+ }
2895
+ /*
2896
+ * Component: Users List
2897
+ * ---------------------
2898
+ */
2899
+ .users-list > li {
2900
+ width: 25%;
2901
+ float: left;
2902
+ padding: 10px;
2903
+ text-align: center;
2904
+ }
2905
+ .users-list > li img {
2906
+ border-radius: 50%;
2907
+ max-width: 100%;
2908
+ height: auto;
2909
+ }
2910
+ .users-list > li > a:hover,
2911
+ .users-list > li > a:hover .users-list-name {
2912
+ color: #999;
2913
+ }
2914
+ .users-list-name,
2915
+ .users-list-date {
2916
+ display: block;
2917
+ }
2918
+ .users-list-name {
2919
+ font-weight: 600;
2920
+ color: #444;
2921
+ overflow: hidden;
2922
+ white-space: nowrap;
2923
+ text-overflow: ellipsis;
2924
+ }
2925
+ .users-list-date {
2926
+ color: #999;
2927
+ font-size: 12px;
2928
+ }
2929
+ /*
2930
+ * Component: Carousel
2931
+ * -------------------
2932
+ */
2933
+ .carousel-control.left,
2934
+ .carousel-control.right {
2935
+ background-image: none;
2936
+ }
2937
+ .carousel-control > .fa {
2938
+ font-size: 40px;
2939
+ position: absolute;
2940
+ top: 50%;
2941
+ z-index: 5;
2942
+ display: inline-block;
2943
+ margin-top: -20px;
2944
+ }
2945
+ /*
2946
+ * Component: modal
2947
+ * ----------------
2948
+ */
2949
+ .modal {
2950
+ background: rgba(0, 0, 0, 0.3);
2951
+ }
2952
+ .modal-content {
2953
+ border-radius: 0;
2954
+ -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
2955
+ box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
2956
+ border: 0;
2957
+ }
2958
+ @media (min-width: 768px) {
2959
+ .modal-content {
2960
+ -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
2961
+ box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
2962
+ }
2963
+ }
2964
+ .modal-header {
2965
+ border-bottom-color: #f4f4f4;
2966
+ }
2967
+ .modal-footer {
2968
+ border-top-color: #f4f4f4;
2969
+ }
2970
+ .modal-primary .modal-header,
2971
+ .modal-primary .modal-footer {
2972
+ border-color: #307095;
2973
+ }
2974
+ .modal-warning .modal-header,
2975
+ .modal-warning .modal-footer {
2976
+ border-color: #c87f0a;
2977
+ }
2978
+ .modal-info .modal-header,
2979
+ .modal-info .modal-footer {
2980
+ border-color: #0097bc;
2981
+ }
2982
+ .modal-success .modal-header,
2983
+ .modal-success .modal-footer {
2984
+ border-color: #00733e;
2985
+ }
2986
+ .modal-danger .modal-header,
2987
+ .modal-danger .modal-footer {
2988
+ border-color: #c23321;
2989
+ }
2990
+ /*
2991
+ * Component: Social Widgets
2992
+ * -------------------------
2993
+ */
2994
+ .box-widget {
2995
+ border: none;
2996
+ position: relative;
2997
+ }
2998
+ .widget-user .widget-user-header {
2999
+ padding: 20px;
3000
+ height: 120px;
3001
+ border-top-right-radius: 3px;
3002
+ border-top-left-radius: 3px;
3003
+ }
3004
+ .widget-user .widget-user-username {
3005
+ margin-top: 0;
3006
+ margin-bottom: 5px;
3007
+ font-size: 25px;
3008
+ font-weight: 300;
3009
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
3010
+ }
3011
+ .widget-user .widget-user-desc {
3012
+ margin-top: 0;
3013
+ }
3014
+ .widget-user .widget-user-image {
3015
+ position: absolute;
3016
+ top: 65px;
3017
+ left: 50%;
3018
+ margin-left: -45px;
3019
+ }
3020
+ .widget-user .widget-user-image > img {
3021
+ width: 90px;
3022
+ height: auto;
3023
+ border: 3px solid #fff;
3024
+ }
3025
+ .widget-user .box-footer {
3026
+ padding-top: 30px;
3027
+ }
3028
+ .widget-user-2 .widget-user-header {
3029
+ padding: 20px;
3030
+ border-top-right-radius: 3px;
3031
+ border-top-left-radius: 3px;
3032
+ }
3033
+ .widget-user-2 .widget-user-username {
3034
+ margin-top: 5px;
3035
+ margin-bottom: 5px;
3036
+ font-size: 25px;
3037
+ font-weight: 300;
3038
+ }
3039
+ .widget-user-2 .widget-user-desc {
3040
+ margin-top: 0;
3041
+ }
3042
+ .widget-user-2 .widget-user-username,
3043
+ .widget-user-2 .widget-user-desc {
3044
+ margin-left: 75px;
3045
+ }
3046
+ .widget-user-2 .widget-user-image > img {
3047
+ width: 65px;
3048
+ height: auto;
3049
+ float: left;
3050
+ }
3051
+ /*
3052
+ * Page: Mailbox
3053
+ * -------------
3054
+ */
3055
+ .mailbox-messages > .table {
3056
+ margin: 0;
3057
+ }
3058
+ .mailbox-controls {
3059
+ padding: 5px;
3060
+ }
3061
+ .mailbox-controls.with-border {
3062
+ border-bottom: 1px solid #f4f4f4;
3063
+ }
3064
+ .mailbox-read-info {
3065
+ border-bottom: 1px solid #f4f4f4;
3066
+ padding: 10px;
3067
+ }
3068
+ .mailbox-read-info h3 {
3069
+ font-size: 20px;
3070
+ margin: 0;
3071
+ }
3072
+ .mailbox-read-info h5 {
3073
+ margin: 0;
3074
+ padding: 5px 0 0 0;
3075
+ }
3076
+ .mailbox-read-time {
3077
+ color: #999;
3078
+ font-size: 13px;
3079
+ }
3080
+ .mailbox-read-message {
3081
+ padding: 10px;
3082
+ }
3083
+ .mailbox-attachments li {
3084
+ float: left;
3085
+ width: 200px;
3086
+ border: 1px solid #eee;
3087
+ margin-bottom: 10px;
3088
+ margin-right: 10px;
3089
+ }
3090
+ .mailbox-attachment-name {
3091
+ font-weight: bold;
3092
+ color: #666;
3093
+ }
3094
+ .mailbox-attachment-icon,
3095
+ .mailbox-attachment-info,
3096
+ .mailbox-attachment-size {
3097
+ display: block;
3098
+ }
3099
+ .mailbox-attachment-info {
3100
+ padding: 10px;
3101
+ background: #f4f4f4;
3102
+ }
3103
+ .mailbox-attachment-size {
3104
+ color: #999;
3105
+ font-size: 12px;
3106
+ }
3107
+ .mailbox-attachment-icon {
3108
+ text-align: center;
3109
+ font-size: 65px;
3110
+ color: #666;
3111
+ padding: 20px 10px;
3112
+ }
3113
+ .mailbox-attachment-icon.has-img {
3114
+ padding: 0;
3115
+ }
3116
+ .mailbox-attachment-icon.has-img > img {
3117
+ max-width: 100%;
3118
+ height: auto;
3119
+ }
3120
+ /*
3121
+ * Page: Lock Screen
3122
+ * -----------------
3123
+ */
3124
+ /* ADD THIS CLASS TO THE <BODY> TAG */
3125
+ .lockscreen {
3126
+ background: #d2d6de;
3127
+ }
3128
+ .lockscreen-logo {
3129
+ font-size: 35px;
3130
+ text-align: center;
3131
+ margin-bottom: 25px;
3132
+ font-weight: 300;
3133
+ }
3134
+ .lockscreen-logo a {
3135
+ color: #444;
3136
+ }
3137
+ .lockscreen-wrapper {
3138
+ max-width: 400px;
3139
+ margin: 0 auto;
3140
+ margin-top: 10%;
3141
+ }
3142
+ /* User name [optional] */
3143
+ .lockscreen .lockscreen-name {
3144
+ text-align: center;
3145
+ font-weight: 600;
3146
+ }
3147
+ /* Will contain the image and the sign in form */
3148
+ .lockscreen-item {
3149
+ border-radius: 4px;
3150
+ padding: 0;
3151
+ background: #fff;
3152
+ position: relative;
3153
+ margin: 10px auto 30px auto;
3154
+ width: 290px;
3155
+ }
3156
+ /* User image */
3157
+ .lockscreen-image {
3158
+ border-radius: 50%;
3159
+ position: absolute;
3160
+ left: -10px;
3161
+ top: -25px;
3162
+ background: #fff;
3163
+ padding: 5px;
3164
+ z-index: 10;
3165
+ }
3166
+ .lockscreen-image > img {
3167
+ border-radius: 50%;
3168
+ width: 70px;
3169
+ height: 70px;
3170
+ }
3171
+ /* Contains the password input and the login button */
3172
+ .lockscreen-credentials {
3173
+ margin-left: 70px;
3174
+ }
3175
+ .lockscreen-credentials .form-control {
3176
+ border: 0;
3177
+ }
3178
+ .lockscreen-credentials .btn {
3179
+ background-color: #fff;
3180
+ border: 0;
3181
+ padding: 0 10px;
3182
+ }
3183
+ .lockscreen-footer {
3184
+ margin-top: 10px;
3185
+ }
3186
+ /*
3187
+ * Page: Login & Register
3188
+ * ----------------------
3189
+ */
3190
+ .login-logo,
3191
+ .register-logo {
3192
+ font-size: 35px;
3193
+ text-align: center;
3194
+ margin-bottom: 25px;
3195
+ font-weight: 300;
3196
+ }
3197
+ .login-logo a,
3198
+ .register-logo a {
3199
+ color: #444;
3200
+ }
3201
+ .login-page,
3202
+ .register-page {
3203
+ background: #d2d6de;
3204
+ }
3205
+ .login-box,
3206
+ .register-box {
3207
+ width: 360px;
3208
+ margin: 7% auto;
3209
+ }
3210
+ @media (max-width: 768px) {
3211
+ .login-box,
3212
+ .register-box {
3213
+ width: 90%;
3214
+ margin-top: 20px;
3215
+ }
3216
+ }
3217
+ .login-box-body,
3218
+ .register-box-body {
3219
+ background: #fff;
3220
+ padding: 20px;
3221
+ border-top: 0;
3222
+ color: #666;
3223
+ }
3224
+ .login-box-body .form-control-feedback,
3225
+ .register-box-body .form-control-feedback {
3226
+ color: #777;
3227
+ }
3228
+ .login-box-msg,
3229
+ .register-box-msg {
3230
+ margin: 0;
3231
+ text-align: center;
3232
+ padding: 0 20px 20px 20px;
3233
+ }
3234
+ .social-auth-links {
3235
+ margin: 10px 0;
3236
+ }
3237
+ /*
3238
+ * Page: 400 and 500 error pages
3239
+ * ------------------------------
3240
+ */
3241
+ .error-page {
3242
+ width: 600px;
3243
+ margin: 20px auto 0 auto;
3244
+ }
3245
+ @media (max-width: 991px) {
3246
+ .error-page {
3247
+ width: 100%;
3248
+ }
3249
+ }
3250
+ .error-page > .headline {
3251
+ float: left;
3252
+ font-size: 100px;
3253
+ font-weight: 300;
3254
+ }
3255
+ @media (max-width: 991px) {
3256
+ .error-page > .headline {
3257
+ float: none;
3258
+ text-align: center;
3259
+ }
3260
+ }
3261
+ .error-page > .error-content {
3262
+ margin-left: 190px;
3263
+ display: block;
3264
+ }
3265
+ @media (max-width: 991px) {
3266
+ .error-page > .error-content {
3267
+ margin-left: 0;
3268
+ }
3269
+ }
3270
+ .error-page > .error-content > h3 {
3271
+ font-weight: 300;
3272
+ font-size: 25px;
3273
+ }
3274
+ @media (max-width: 991px) {
3275
+ .error-page > .error-content > h3 {
3276
+ text-align: center;
3277
+ }
3278
+ }
3279
+ /*
3280
+ * Page: Invoice
3281
+ * -------------
3282
+ */
3283
+ .invoice {
3284
+ position: relative;
3285
+ background: #fff;
3286
+ border: 1px solid #f4f4f4;
3287
+ padding: 20px;
3288
+ margin: 10px 25px;
3289
+ }
3290
+ .invoice-title {
3291
+ margin-top: 0;
3292
+ }
3293
+ /*
3294
+ * Page: Profile
3295
+ * -------------
3296
+ */
3297
+ .profile-user-img {
3298
+ margin: 0 auto;
3299
+ width: 100px;
3300
+ padding: 3px;
3301
+ border: 3px solid #d2d6de;
3302
+ }
3303
+ .profile-username {
3304
+ font-size: 21px;
3305
+ margin-top: 5px;
3306
+ }
3307
+ .post {
3308
+ border-bottom: 1px solid #d2d6de;
3309
+ margin-bottom: 15px;
3310
+ padding-bottom: 15px;
3311
+ color: #666;
3312
+ }
3313
+ .post:last-of-type {
3314
+ border-bottom: 0;
3315
+ margin-bottom: 0;
3316
+ padding-bottom: 0;
3317
+ }
3318
+ .post .user-block {
3319
+ margin-bottom: 15px;
3320
+ }
3321
+ /*
3322
+ * Social Buttons for Bootstrap
3323
+ *
3324
+ * Copyright 2013-2015 Panayiotis Lipiridis
3325
+ * Licensed under the MIT License
3326
+ *
3327
+ * https://github.com/lipis/bootstrap-social
3328
+ */
3329
+ .btn-social {
3330
+ position: relative;
3331
+ padding-left: 44px;
3332
+ text-align: left;
3333
+ white-space: nowrap;
3334
+ overflow: hidden;
3335
+ text-overflow: ellipsis;
3336
+ }
3337
+ .btn-social > :first-child {
3338
+ position: absolute;
3339
+ left: 0;
3340
+ top: 0;
3341
+ bottom: 0;
3342
+ width: 32px;
3343
+ line-height: 34px;
3344
+ font-size: 1.6em;
3345
+ text-align: center;
3346
+ border-right: 1px solid rgba(0, 0, 0, 0.2);
3347
+ }
3348
+ .btn-social.btn-lg {
3349
+ padding-left: 61px;
3350
+ }
3351
+ .btn-social.btn-lg > :first-child {
3352
+ line-height: 45px;
3353
+ width: 45px;
3354
+ font-size: 1.8em;
3355
+ }
3356
+ .btn-social.btn-sm {
3357
+ padding-left: 38px;
3358
+ }
3359
+ .btn-social.btn-sm > :first-child {
3360
+ line-height: 28px;
3361
+ width: 28px;
3362
+ font-size: 1.4em;
3363
+ }
3364
+ .btn-social.btn-xs {
3365
+ padding-left: 30px;
3366
+ }
3367
+ .btn-social.btn-xs > :first-child {
3368
+ line-height: 20px;
3369
+ width: 20px;
3370
+ font-size: 1.2em;
3371
+ }
3372
+ .btn-social-icon {
3373
+ position: relative;
3374
+ padding-left: 44px;
3375
+ text-align: left;
3376
+ white-space: nowrap;
3377
+ overflow: hidden;
3378
+ text-overflow: ellipsis;
3379
+ height: 34px;
3380
+ width: 34px;
3381
+ padding: 0;
3382
+ }
3383
+ .btn-social-icon > :first-child {
3384
+ position: absolute;
3385
+ left: 0;
3386
+ top: 0;
3387
+ bottom: 0;
3388
+ width: 32px;
3389
+ line-height: 34px;
3390
+ font-size: 1.6em;
3391
+ text-align: center;
3392
+ border-right: 1px solid rgba(0, 0, 0, 0.2);
3393
+ }
3394
+ .btn-social-icon.btn-lg {
3395
+ padding-left: 61px;
3396
+ }
3397
+ .btn-social-icon.btn-lg > :first-child {
3398
+ line-height: 45px;
3399
+ width: 45px;
3400
+ font-size: 1.8em;
3401
+ }
3402
+ .btn-social-icon.btn-sm {
3403
+ padding-left: 38px;
3404
+ }
3405
+ .btn-social-icon.btn-sm > :first-child {
3406
+ line-height: 28px;
3407
+ width: 28px;
3408
+ font-size: 1.4em;
3409
+ }
3410
+ .btn-social-icon.btn-xs {
3411
+ padding-left: 30px;
3412
+ }
3413
+ .btn-social-icon.btn-xs > :first-child {
3414
+ line-height: 20px;
3415
+ width: 20px;
3416
+ font-size: 1.2em;
3417
+ }
3418
+ .btn-social-icon > :first-child {
3419
+ border: none;
3420
+ text-align: center;
3421
+ width: 100%;
3422
+ }
3423
+ .btn-social-icon.btn-lg {
3424
+ height: 45px;
3425
+ width: 45px;
3426
+ padding-left: 0;
3427
+ padding-right: 0;
3428
+ }
3429
+ .btn-social-icon.btn-sm {
3430
+ height: 30px;
3431
+ width: 30px;
3432
+ padding-left: 0;
3433
+ padding-right: 0;
3434
+ }
3435
+ .btn-social-icon.btn-xs {
3436
+ height: 22px;
3437
+ width: 22px;
3438
+ padding-left: 0;
3439
+ padding-right: 0;
3440
+ }
3441
+ .btn-adn {
3442
+ color: #ffffff;
3443
+ background-color: #d87a68;
3444
+ border-color: rgba(0, 0, 0, 0.2);
3445
+ }
3446
+ .btn-adn:focus,
3447
+ .btn-adn.focus {
3448
+ color: #ffffff;
3449
+ background-color: #ce563f;
3450
+ border-color: rgba(0, 0, 0, 0.2);
3451
+ }
3452
+ .btn-adn:hover {
3453
+ color: #ffffff;
3454
+ background-color: #ce563f;
3455
+ border-color: rgba(0, 0, 0, 0.2);
3456
+ }
3457
+ .btn-adn:active,
3458
+ .btn-adn.active,
3459
+ .open > .dropdown-toggle.btn-adn {
3460
+ color: #ffffff;
3461
+ background-color: #ce563f;
3462
+ border-color: rgba(0, 0, 0, 0.2);
3463
+ }
3464
+ .btn-adn:active,
3465
+ .btn-adn.active,
3466
+ .open > .dropdown-toggle.btn-adn {
3467
+ background-image: none;
3468
+ }
3469
+ .btn-adn .badge {
3470
+ color: #d87a68;
3471
+ background-color: #ffffff;
3472
+ }
3473
+ .btn-bitbucket {
3474
+ color: #ffffff;
3475
+ background-color: #205081;
3476
+ border-color: rgba(0, 0, 0, 0.2);
3477
+ }
3478
+ .btn-bitbucket:focus,
3479
+ .btn-bitbucket.focus {
3480
+ color: #ffffff;
3481
+ background-color: #163758;
3482
+ border-color: rgba(0, 0, 0, 0.2);
3483
+ }
3484
+ .btn-bitbucket:hover {
3485
+ color: #ffffff;
3486
+ background-color: #163758;
3487
+ border-color: rgba(0, 0, 0, 0.2);
3488
+ }
3489
+ .btn-bitbucket:active,
3490
+ .btn-bitbucket.active,
3491
+ .open > .dropdown-toggle.btn-bitbucket {
3492
+ color: #ffffff;
3493
+ background-color: #163758;
3494
+ border-color: rgba(0, 0, 0, 0.2);
3495
+ }
3496
+ .btn-bitbucket:active,
3497
+ .btn-bitbucket.active,
3498
+ .open > .dropdown-toggle.btn-bitbucket {
3499
+ background-image: none;
3500
+ }
3501
+ .btn-bitbucket .badge {
3502
+ color: #205081;
3503
+ background-color: #ffffff;
3504
+ }
3505
+ .btn-dropbox {
3506
+ color: #ffffff;
3507
+ background-color: #1087dd;
3508
+ border-color: rgba(0, 0, 0, 0.2);
3509
+ }
3510
+ .btn-dropbox:focus,
3511
+ .btn-dropbox.focus {
3512
+ color: #ffffff;
3513
+ background-color: #0d6aad;
3514
+ border-color: rgba(0, 0, 0, 0.2);
3515
+ }
3516
+ .btn-dropbox:hover {
3517
+ color: #ffffff;
3518
+ background-color: #0d6aad;
3519
+ border-color: rgba(0, 0, 0, 0.2);
3520
+ }
3521
+ .btn-dropbox:active,
3522
+ .btn-dropbox.active,
3523
+ .open > .dropdown-toggle.btn-dropbox {
3524
+ color: #ffffff;
3525
+ background-color: #0d6aad;
3526
+ border-color: rgba(0, 0, 0, 0.2);
3527
+ }
3528
+ .btn-dropbox:active,
3529
+ .btn-dropbox.active,
3530
+ .open > .dropdown-toggle.btn-dropbox {
3531
+ background-image: none;
3532
+ }
3533
+ .btn-dropbox .badge {
3534
+ color: #1087dd;
3535
+ background-color: #ffffff;
3536
+ }
3537
+ .btn-facebook {
3538
+ color: #ffffff;
3539
+ background-color: #3b5998;
3540
+ border-color: rgba(0, 0, 0, 0.2);
3541
+ }
3542
+ .btn-facebook:focus,
3543
+ .btn-facebook.focus {
3544
+ color: #ffffff;
3545
+ background-color: #2d4373;
3546
+ border-color: rgba(0, 0, 0, 0.2);
3547
+ }
3548
+ .btn-facebook:hover {
3549
+ color: #ffffff;
3550
+ background-color: #2d4373;
3551
+ border-color: rgba(0, 0, 0, 0.2);
3552
+ }
3553
+ .btn-facebook:active,
3554
+ .btn-facebook.active,
3555
+ .open > .dropdown-toggle.btn-facebook {
3556
+ color: #ffffff;
3557
+ background-color: #2d4373;
3558
+ border-color: rgba(0, 0, 0, 0.2);
3559
+ }
3560
+ .btn-facebook:active,
3561
+ .btn-facebook.active,
3562
+ .open > .dropdown-toggle.btn-facebook {
3563
+ background-image: none;
3564
+ }
3565
+ .btn-facebook .badge {
3566
+ color: #3b5998;
3567
+ background-color: #ffffff;
3568
+ }
3569
+ .btn-flickr {
3570
+ color: #ffffff;
3571
+ background-color: #ff0084;
3572
+ border-color: rgba(0, 0, 0, 0.2);
3573
+ }
3574
+ .btn-flickr:focus,
3575
+ .btn-flickr.focus {
3576
+ color: #ffffff;
3577
+ background-color: #cc006a;
3578
+ border-color: rgba(0, 0, 0, 0.2);
3579
+ }
3580
+ .btn-flickr:hover {
3581
+ color: #ffffff;
3582
+ background-color: #cc006a;
3583
+ border-color: rgba(0, 0, 0, 0.2);
3584
+ }
3585
+ .btn-flickr:active,
3586
+ .btn-flickr.active,
3587
+ .open > .dropdown-toggle.btn-flickr {
3588
+ color: #ffffff;
3589
+ background-color: #cc006a;
3590
+ border-color: rgba(0, 0, 0, 0.2);
3591
+ }
3592
+ .btn-flickr:active,
3593
+ .btn-flickr.active,
3594
+ .open > .dropdown-toggle.btn-flickr {
3595
+ background-image: none;
3596
+ }
3597
+ .btn-flickr .badge {
3598
+ color: #ff0084;
3599
+ background-color: #ffffff;
3600
+ }
3601
+ .btn-foursquare {
3602
+ color: #ffffff;
3603
+ background-color: #f94877;
3604
+ border-color: rgba(0, 0, 0, 0.2);
3605
+ }
3606
+ .btn-foursquare:focus,
3607
+ .btn-foursquare.focus {
3608
+ color: #ffffff;
3609
+ background-color: #f71752;
3610
+ border-color: rgba(0, 0, 0, 0.2);
3611
+ }
3612
+ .btn-foursquare:hover {
3613
+ color: #ffffff;
3614
+ background-color: #f71752;
3615
+ border-color: rgba(0, 0, 0, 0.2);
3616
+ }
3617
+ .btn-foursquare:active,
3618
+ .btn-foursquare.active,
3619
+ .open > .dropdown-toggle.btn-foursquare {
3620
+ color: #ffffff;
3621
+ background-color: #f71752;
3622
+ border-color: rgba(0, 0, 0, 0.2);
3623
+ }
3624
+ .btn-foursquare:active,
3625
+ .btn-foursquare.active,
3626
+ .open > .dropdown-toggle.btn-foursquare {
3627
+ background-image: none;
3628
+ }
3629
+ .btn-foursquare .badge {
3630
+ color: #f94877;
3631
+ background-color: #ffffff;
3632
+ }
3633
+ .btn-github {
3634
+ color: #ffffff;
3635
+ background-color: #444444;
3636
+ border-color: rgba(0, 0, 0, 0.2);
3637
+ }
3638
+ .btn-github:focus,
3639
+ .btn-github.focus {
3640
+ color: #ffffff;
3641
+ background-color: #2b2b2b;
3642
+ border-color: rgba(0, 0, 0, 0.2);
3643
+ }
3644
+ .btn-github:hover {
3645
+ color: #ffffff;
3646
+ background-color: #2b2b2b;
3647
+ border-color: rgba(0, 0, 0, 0.2);
3648
+ }
3649
+ .btn-github:active,
3650
+ .btn-github.active,
3651
+ .open > .dropdown-toggle.btn-github {
3652
+ color: #ffffff;
3653
+ background-color: #2b2b2b;
3654
+ border-color: rgba(0, 0, 0, 0.2);
3655
+ }
3656
+ .btn-github:active,
3657
+ .btn-github.active,
3658
+ .open > .dropdown-toggle.btn-github {
3659
+ background-image: none;
3660
+ }
3661
+ .btn-github .badge {
3662
+ color: #444444;
3663
+ background-color: #ffffff;
3664
+ }
3665
+ .btn-google {
3666
+ color: #ffffff;
3667
+ background-color: #dd4b39;
3668
+ border-color: rgba(0, 0, 0, 0.2);
3669
+ }
3670
+ .btn-google:focus,
3671
+ .btn-google.focus {
3672
+ color: #ffffff;
3673
+ background-color: #c23321;
3674
+ border-color: rgba(0, 0, 0, 0.2);
3675
+ }
3676
+ .btn-google:hover {
3677
+ color: #ffffff;
3678
+ background-color: #c23321;
3679
+ border-color: rgba(0, 0, 0, 0.2);
3680
+ }
3681
+ .btn-google:active,
3682
+ .btn-google.active,
3683
+ .open > .dropdown-toggle.btn-google {
3684
+ color: #ffffff;
3685
+ background-color: #c23321;
3686
+ border-color: rgba(0, 0, 0, 0.2);
3687
+ }
3688
+ .btn-google:active,
3689
+ .btn-google.active,
3690
+ .open > .dropdown-toggle.btn-google {
3691
+ background-image: none;
3692
+ }
3693
+ .btn-google .badge {
3694
+ color: #dd4b39;
3695
+ background-color: #ffffff;
3696
+ }
3697
+ .btn-instagram {
3698
+ color: #ffffff;
3699
+ background-color: #3f729b;
3700
+ border-color: rgba(0, 0, 0, 0.2);
3701
+ }
3702
+ .btn-instagram:focus,
3703
+ .btn-instagram.focus {
3704
+ color: #ffffff;
3705
+ background-color: #305777;
3706
+ border-color: rgba(0, 0, 0, 0.2);
3707
+ }
3708
+ .btn-instagram:hover {
3709
+ color: #ffffff;
3710
+ background-color: #305777;
3711
+ border-color: rgba(0, 0, 0, 0.2);
3712
+ }
3713
+ .btn-instagram:active,
3714
+ .btn-instagram.active,
3715
+ .open > .dropdown-toggle.btn-instagram {
3716
+ color: #ffffff;
3717
+ background-color: #305777;
3718
+ border-color: rgba(0, 0, 0, 0.2);
3719
+ }
3720
+ .btn-instagram:active,
3721
+ .btn-instagram.active,
3722
+ .open > .dropdown-toggle.btn-instagram {
3723
+ background-image: none;
3724
+ }
3725
+ .btn-instagram .badge {
3726
+ color: #3f729b;
3727
+ background-color: #ffffff;
3728
+ }
3729
+ .btn-linkedin {
3730
+ color: #ffffff;
3731
+ background-color: #007bb6;
3732
+ border-color: rgba(0, 0, 0, 0.2);
3733
+ }
3734
+ .btn-linkedin:focus,
3735
+ .btn-linkedin.focus {
3736
+ color: #ffffff;
3737
+ background-color: #005983;
3738
+ border-color: rgba(0, 0, 0, 0.2);
3739
+ }
3740
+ .btn-linkedin:hover {
3741
+ color: #ffffff;
3742
+ background-color: #005983;
3743
+ border-color: rgba(0, 0, 0, 0.2);
3744
+ }
3745
+ .btn-linkedin:active,
3746
+ .btn-linkedin.active,
3747
+ .open > .dropdown-toggle.btn-linkedin {
3748
+ color: #ffffff;
3749
+ background-color: #005983;
3750
+ border-color: rgba(0, 0, 0, 0.2);
3751
+ }
3752
+ .btn-linkedin:active,
3753
+ .btn-linkedin.active,
3754
+ .open > .dropdown-toggle.btn-linkedin {
3755
+ background-image: none;
3756
+ }
3757
+ .btn-linkedin .badge {
3758
+ color: #007bb6;
3759
+ background-color: #ffffff;
3760
+ }
3761
+ .btn-microsoft {
3762
+ color: #ffffff;
3763
+ background-color: #2672ec;
3764
+ border-color: rgba(0, 0, 0, 0.2);
3765
+ }
3766
+ .btn-microsoft:focus,
3767
+ .btn-microsoft.focus {
3768
+ color: #ffffff;
3769
+ background-color: #125acd;
3770
+ border-color: rgba(0, 0, 0, 0.2);
3771
+ }
3772
+ .btn-microsoft:hover {
3773
+ color: #ffffff;
3774
+ background-color: #125acd;
3775
+ border-color: rgba(0, 0, 0, 0.2);
3776
+ }
3777
+ .btn-microsoft:active,
3778
+ .btn-microsoft.active,
3779
+ .open > .dropdown-toggle.btn-microsoft {
3780
+ color: #ffffff;
3781
+ background-color: #125acd;
3782
+ border-color: rgba(0, 0, 0, 0.2);
3783
+ }
3784
+ .btn-microsoft:active,
3785
+ .btn-microsoft.active,
3786
+ .open > .dropdown-toggle.btn-microsoft {
3787
+ background-image: none;
3788
+ }
3789
+ .btn-microsoft .badge {
3790
+ color: #2672ec;
3791
+ background-color: #ffffff;
3792
+ }
3793
+ .btn-openid {
3794
+ color: #ffffff;
3795
+ background-color: #f7931e;
3796
+ border-color: rgba(0, 0, 0, 0.2);
3797
+ }
3798
+ .btn-openid:focus,
3799
+ .btn-openid.focus {
3800
+ color: #ffffff;
3801
+ background-color: #da7908;
3802
+ border-color: rgba(0, 0, 0, 0.2);
3803
+ }
3804
+ .btn-openid:hover {
3805
+ color: #ffffff;
3806
+ background-color: #da7908;
3807
+ border-color: rgba(0, 0, 0, 0.2);
3808
+ }
3809
+ .btn-openid:active,
3810
+ .btn-openid.active,
3811
+ .open > .dropdown-toggle.btn-openid {
3812
+ color: #ffffff;
3813
+ background-color: #da7908;
3814
+ border-color: rgba(0, 0, 0, 0.2);
3815
+ }
3816
+ .btn-openid:active,
3817
+ .btn-openid.active,
3818
+ .open > .dropdown-toggle.btn-openid {
3819
+ background-image: none;
3820
+ }
3821
+ .btn-openid .badge {
3822
+ color: #f7931e;
3823
+ background-color: #ffffff;
3824
+ }
3825
+ .btn-pinterest {
3826
+ color: #ffffff;
3827
+ background-color: #cb2027;
3828
+ border-color: rgba(0, 0, 0, 0.2);
3829
+ }
3830
+ .btn-pinterest:focus,
3831
+ .btn-pinterest.focus {
3832
+ color: #ffffff;
3833
+ background-color: #9f191f;
3834
+ border-color: rgba(0, 0, 0, 0.2);
3835
+ }
3836
+ .btn-pinterest:hover {
3837
+ color: #ffffff;
3838
+ background-color: #9f191f;
3839
+ border-color: rgba(0, 0, 0, 0.2);
3840
+ }
3841
+ .btn-pinterest:active,
3842
+ .btn-pinterest.active,
3843
+ .open > .dropdown-toggle.btn-pinterest {
3844
+ color: #ffffff;
3845
+ background-color: #9f191f;
3846
+ border-color: rgba(0, 0, 0, 0.2);
3847
+ }
3848
+ .btn-pinterest:active,
3849
+ .btn-pinterest.active,
3850
+ .open > .dropdown-toggle.btn-pinterest {
3851
+ background-image: none;
3852
+ }
3853
+ .btn-pinterest .badge {
3854
+ color: #cb2027;
3855
+ background-color: #ffffff;
3856
+ }
3857
+ .btn-reddit {
3858
+ color: #000000;
3859
+ background-color: #eff7ff;
3860
+ border-color: rgba(0, 0, 0, 0.2);
3861
+ }
3862
+ .btn-reddit:focus,
3863
+ .btn-reddit.focus {
3864
+ color: #000000;
3865
+ background-color: #bcddff;
3866
+ border-color: rgba(0, 0, 0, 0.2);
3867
+ }
3868
+ .btn-reddit:hover {
3869
+ color: #000000;
3870
+ background-color: #bcddff;
3871
+ border-color: rgba(0, 0, 0, 0.2);
3872
+ }
3873
+ .btn-reddit:active,
3874
+ .btn-reddit.active,
3875
+ .open > .dropdown-toggle.btn-reddit {
3876
+ color: #000000;
3877
+ background-color: #bcddff;
3878
+ border-color: rgba(0, 0, 0, 0.2);
3879
+ }
3880
+ .btn-reddit:active,
3881
+ .btn-reddit.active,
3882
+ .open > .dropdown-toggle.btn-reddit {
3883
+ background-image: none;
3884
+ }
3885
+ .btn-reddit .badge {
3886
+ color: #eff7ff;
3887
+ background-color: #000000;
3888
+ }
3889
+ .btn-soundcloud {
3890
+ color: #ffffff;
3891
+ background-color: #ff5500;
3892
+ border-color: rgba(0, 0, 0, 0.2);
3893
+ }
3894
+ .btn-soundcloud:focus,
3895
+ .btn-soundcloud.focus {
3896
+ color: #ffffff;
3897
+ background-color: #cc4400;
3898
+ border-color: rgba(0, 0, 0, 0.2);
3899
+ }
3900
+ .btn-soundcloud:hover {
3901
+ color: #ffffff;
3902
+ background-color: #cc4400;
3903
+ border-color: rgba(0, 0, 0, 0.2);
3904
+ }
3905
+ .btn-soundcloud:active,
3906
+ .btn-soundcloud.active,
3907
+ .open > .dropdown-toggle.btn-soundcloud {
3908
+ color: #ffffff;
3909
+ background-color: #cc4400;
3910
+ border-color: rgba(0, 0, 0, 0.2);
3911
+ }
3912
+ .btn-soundcloud:active,
3913
+ .btn-soundcloud.active,
3914
+ .open > .dropdown-toggle.btn-soundcloud {
3915
+ background-image: none;
3916
+ }
3917
+ .btn-soundcloud .badge {
3918
+ color: #ff5500;
3919
+ background-color: #ffffff;
3920
+ }
3921
+ .btn-tumblr {
3922
+ color: #ffffff;
3923
+ background-color: #2c4762;
3924
+ border-color: rgba(0, 0, 0, 0.2);
3925
+ }
3926
+ .btn-tumblr:focus,
3927
+ .btn-tumblr.focus {
3928
+ color: #ffffff;
3929
+ background-color: #1c2d3f;
3930
+ border-color: rgba(0, 0, 0, 0.2);
3931
+ }
3932
+ .btn-tumblr:hover {
3933
+ color: #ffffff;
3934
+ background-color: #1c2d3f;
3935
+ border-color: rgba(0, 0, 0, 0.2);
3936
+ }
3937
+ .btn-tumblr:active,
3938
+ .btn-tumblr.active,
3939
+ .open > .dropdown-toggle.btn-tumblr {
3940
+ color: #ffffff;
3941
+ background-color: #1c2d3f;
3942
+ border-color: rgba(0, 0, 0, 0.2);
3943
+ }
3944
+ .btn-tumblr:active,
3945
+ .btn-tumblr.active,
3946
+ .open > .dropdown-toggle.btn-tumblr {
3947
+ background-image: none;
3948
+ }
3949
+ .btn-tumblr .badge {
3950
+ color: #2c4762;
3951
+ background-color: #ffffff;
3952
+ }
3953
+ .btn-twitter {
3954
+ color: #ffffff;
3955
+ background-color: #55acee;
3956
+ border-color: rgba(0, 0, 0, 0.2);
3957
+ }
3958
+ .btn-twitter:focus,
3959
+ .btn-twitter.focus {
3960
+ color: #ffffff;
3961
+ background-color: #2795e9;
3962
+ border-color: rgba(0, 0, 0, 0.2);
3963
+ }
3964
+ .btn-twitter:hover {
3965
+ color: #ffffff;
3966
+ background-color: #2795e9;
3967
+ border-color: rgba(0, 0, 0, 0.2);
3968
+ }
3969
+ .btn-twitter:active,
3970
+ .btn-twitter.active,
3971
+ .open > .dropdown-toggle.btn-twitter {
3972
+ color: #ffffff;
3973
+ background-color: #2795e9;
3974
+ border-color: rgba(0, 0, 0, 0.2);
3975
+ }
3976
+ .btn-twitter:active,
3977
+ .btn-twitter.active,
3978
+ .open > .dropdown-toggle.btn-twitter {
3979
+ background-image: none;
3980
+ }
3981
+ .btn-twitter .badge {
3982
+ color: #55acee;
3983
+ background-color: #ffffff;
3984
+ }
3985
+ .btn-vimeo {
3986
+ color: #ffffff;
3987
+ background-color: #1ab7ea;
3988
+ border-color: rgba(0, 0, 0, 0.2);
3989
+ }
3990
+ .btn-vimeo:focus,
3991
+ .btn-vimeo.focus {
3992
+ color: #ffffff;
3993
+ background-color: #1295bf;
3994
+ border-color: rgba(0, 0, 0, 0.2);
3995
+ }
3996
+ .btn-vimeo:hover {
3997
+ color: #ffffff;
3998
+ background-color: #1295bf;
3999
+ border-color: rgba(0, 0, 0, 0.2);
4000
+ }
4001
+ .btn-vimeo:active,
4002
+ .btn-vimeo.active,
4003
+ .open > .dropdown-toggle.btn-vimeo {
4004
+ color: #ffffff;
4005
+ background-color: #1295bf;
4006
+ border-color: rgba(0, 0, 0, 0.2);
4007
+ }
4008
+ .btn-vimeo:active,
4009
+ .btn-vimeo.active,
4010
+ .open > .dropdown-toggle.btn-vimeo {
4011
+ background-image: none;
4012
+ }
4013
+ .btn-vimeo .badge {
4014
+ color: #1ab7ea;
4015
+ background-color: #ffffff;
4016
+ }
4017
+ .btn-vk {
4018
+ color: #ffffff;
4019
+ background-color: #587ea3;
4020
+ border-color: rgba(0, 0, 0, 0.2);
4021
+ }
4022
+ .btn-vk:focus,
4023
+ .btn-vk.focus {
4024
+ color: #ffffff;
4025
+ background-color: #466482;
4026
+ border-color: rgba(0, 0, 0, 0.2);
4027
+ }
4028
+ .btn-vk:hover {
4029
+ color: #ffffff;
4030
+ background-color: #466482;
4031
+ border-color: rgba(0, 0, 0, 0.2);
4032
+ }
4033
+ .btn-vk:active,
4034
+ .btn-vk.active,
4035
+ .open > .dropdown-toggle.btn-vk {
4036
+ color: #ffffff;
4037
+ background-color: #466482;
4038
+ border-color: rgba(0, 0, 0, 0.2);
4039
+ }
4040
+ .btn-vk:active,
4041
+ .btn-vk.active,
4042
+ .open > .dropdown-toggle.btn-vk {
4043
+ background-image: none;
4044
+ }
4045
+ .btn-vk .badge {
4046
+ color: #587ea3;
4047
+ background-color: #ffffff;
4048
+ }
4049
+ .btn-yahoo {
4050
+ color: #ffffff;
4051
+ background-color: #720e9e;
4052
+ border-color: rgba(0, 0, 0, 0.2);
4053
+ }
4054
+ .btn-yahoo:focus,
4055
+ .btn-yahoo.focus {
4056
+ color: #ffffff;
4057
+ background-color: #500a6f;
4058
+ border-color: rgba(0, 0, 0, 0.2);
4059
+ }
4060
+ .btn-yahoo:hover {
4061
+ color: #ffffff;
4062
+ background-color: #500a6f;
4063
+ border-color: rgba(0, 0, 0, 0.2);
4064
+ }
4065
+ .btn-yahoo:active,
4066
+ .btn-yahoo.active,
4067
+ .open > .dropdown-toggle.btn-yahoo {
4068
+ color: #ffffff;
4069
+ background-color: #500a6f;
4070
+ border-color: rgba(0, 0, 0, 0.2);
4071
+ }
4072
+ .btn-yahoo:active,
4073
+ .btn-yahoo.active,
4074
+ .open > .dropdown-toggle.btn-yahoo {
4075
+ background-image: none;
4076
+ }
4077
+ .btn-yahoo .badge {
4078
+ color: #720e9e;
4079
+ background-color: #ffffff;
4080
+ }
4081
+ /*
4082
+ * Plugin: Full Calendar
4083
+ * ---------------------
4084
+ */
4085
+ .fc-button {
4086
+ background: #f4f4f4;
4087
+ background-image: none;
4088
+ color: #444;
4089
+ border-color: #ddd;
4090
+ border-bottom-color: #ddd;
4091
+ }
4092
+ .fc-button:hover,
4093
+ .fc-button:active,
4094
+ .fc-button.hover {
4095
+ background-color: #e9e9e9;
4096
+ }
4097
+ .fc-header-title h2 {
4098
+ font-size: 15px;
4099
+ line-height: 1.6em;
4100
+ color: #666;
4101
+ margin-left: 10px;
4102
+ }
4103
+ .fc-header-right {
4104
+ padding-right: 10px;
4105
+ }
4106
+ .fc-header-left {
4107
+ padding-left: 10px;
4108
+ }
4109
+ .fc-widget-header {
4110
+ background: #fafafa;
4111
+ }
4112
+ .fc-grid {
4113
+ width: 100%;
4114
+ border: 0;
4115
+ }
4116
+ .fc-widget-header:first-of-type,
4117
+ .fc-widget-content:first-of-type {
4118
+ border-left: 0;
4119
+ border-right: 0;
4120
+ }
4121
+ .fc-widget-header:last-of-type,
4122
+ .fc-widget-content:last-of-type {
4123
+ border-right: 0;
4124
+ }
4125
+ .fc-toolbar {
4126
+ padding: 10px;
4127
+ margin: 0;
4128
+ }
4129
+ .fc-day-number {
4130
+ font-size: 20px;
4131
+ font-weight: 300;
4132
+ padding-right: 10px;
4133
+ }
4134
+ .fc-color-picker {
4135
+ list-style: none;
4136
+ margin: 0;
4137
+ padding: 0;
4138
+ }
4139
+ .fc-color-picker > li {
4140
+ float: left;
4141
+ font-size: 30px;
4142
+ margin-right: 5px;
4143
+ line-height: 30px;
4144
+ }
4145
+ .fc-color-picker > li .fa {
4146
+ -webkit-transition: -webkit-transform linear 0.3s;
4147
+ -moz-transition: -moz-transform linear 0.3s;
4148
+ -o-transition: -o-transform linear 0.3s;
4149
+ transition: transform linear 0.3s;
4150
+ }
4151
+ .fc-color-picker > li .fa:hover {
4152
+ -webkit-transform: rotate(30deg);
4153
+ -ms-transform: rotate(30deg);
4154
+ -o-transform: rotate(30deg);
4155
+ transform: rotate(30deg);
4156
+ }
4157
+ #add-new-event {
4158
+ -webkit-transition: all linear 0.3s;
4159
+ -o-transition: all linear 0.3s;
4160
+ transition: all linear 0.3s;
4161
+ }
4162
+ .external-event {
4163
+ padding: 5px 10px;
4164
+ font-weight: bold;
4165
+ margin-bottom: 4px;
4166
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
4167
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
4168
+ border-radius: 3px;
4169
+ cursor: move;
4170
+ }
4171
+ .external-event:hover {
4172
+ box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.2);
4173
+ }
4174
+ /*
4175
+ * Plugin: Select2
4176
+ * ---------------
4177
+ */
4178
+ .select2-container--default.select2-container--focus,
4179
+ .select2-selection.select2-container--focus,
4180
+ .select2-container--default:focus,
4181
+ .select2-selection:focus,
4182
+ .select2-container--default:active,
4183
+ .select2-selection:active {
4184
+ outline: none;
4185
+ }
4186
+ .select2-container--default .select2-selection--single,
4187
+ .select2-selection .select2-selection--single {
4188
+ border: 1px solid #d2d6de;
4189
+ border-radius: 0;
4190
+ padding: 6px 12px;
4191
+ height: 34px;
4192
+ }
4193
+ .select2-container--default.select2-container--open {
4194
+ border-color: #3c8dbc;
4195
+ }
4196
+ .select2-dropdown {
4197
+ border: 1px solid #d2d6de;
4198
+ border-radius: 0;
4199
+ }
4200
+ .select2-container--default .select2-results__option--highlighted[aria-selected] {
4201
+ background-color: #3c8dbc;
4202
+ color: white;
4203
+ }
4204
+ .select2-results__option {
4205
+ padding: 6px 12px;
4206
+ user-select: none;
4207
+ -webkit-user-select: none;
4208
+ }
4209
+ .select2-container .select2-selection--single .select2-selection__rendered {
4210
+ padding-left: 0;
4211
+ padding-right: 0;
4212
+ height: auto;
4213
+ margin-top: -4px;
4214
+ }
4215
+ .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
4216
+ padding-right: 6px;
4217
+ padding-left: 20px;
4218
+ }
4219
+ .select2-container--default .select2-selection--single .select2-selection__arrow {
4220
+ height: 28px;
4221
+ right: 3px;
4222
+ }
4223
+ .select2-container--default .select2-selection--single .select2-selection__arrow b {
4224
+ margin-top: 0;
4225
+ }
4226
+ .select2-dropdown .select2-search__field,
4227
+ .select2-search--inline .select2-search__field {
4228
+ border: 1px solid #d2d6de;
4229
+ }
4230
+ .select2-dropdown .select2-search__field:focus,
4231
+ .select2-search--inline .select2-search__field:focus {
4232
+ outline: none;
4233
+ border: 1px solid #3c8dbc;
4234
+ }
4235
+ .select2-container--default .select2-results__option[aria-disabled=true] {
4236
+ color: #999;
4237
+ }
4238
+ .select2-container--default .select2-results__option[aria-selected=true] {
4239
+ background-color: #ddd;
4240
+ }
4241
+ .select2-container--default .select2-results__option[aria-selected=true],
4242
+ .select2-container--default .select2-results__option[aria-selected=true]:hover {
4243
+ color: #444;
4244
+ }
4245
+ .select2-container--default .select2-selection--multiple {
4246
+ border: 1px solid #d2d6de;
4247
+ border-radius: 0;
4248
+ }
4249
+ .select2-container--default .select2-selection--multiple:focus {
4250
+ border-color: #3c8dbc;
4251
+ }
4252
+ .select2-container--default.select2-container--focus .select2-selection--multiple {
4253
+ border-color: #d2d6de;
4254
+ }
4255
+ .select2-container--default .select2-selection--multiple .select2-selection__choice {
4256
+ background-color: #3c8dbc;
4257
+ border-color: #367fa9;
4258
+ padding: 1px 10px;
4259
+ color: #fff;
4260
+ }
4261
+ .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
4262
+ margin-right: 5px;
4263
+ color: rgba(255, 255, 255, 0.7);
4264
+ }
4265
+ .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
4266
+ color: #fff;
4267
+ }
4268
+ .select2-container .select2-selection--single .select2-selection__rendered {
4269
+ padding-right: 10px;
4270
+ }
4271
+ /*
4272
+ * General: Miscellaneous
4273
+ * ----------------------
4274
+ */
4275
+ .pad {
4276
+ padding: 10px;
4277
+ }
4278
+ .margin {
4279
+ margin: 10px;
4280
+ }
4281
+ .margin-bottom {
4282
+ margin-bottom: 20px;
4283
+ }
4284
+ .margin-bottom-none {
4285
+ margin-bottom: 0;
4286
+ }
4287
+ .margin-r-5 {
4288
+ margin-right: 5px;
4289
+ }
4290
+ .inline {
4291
+ display: inline;
4292
+ }
4293
+ .description-block {
4294
+ display: block;
4295
+ margin: 10px 0;
4296
+ text-align: center;
4297
+ }
4298
+ .description-block.margin-bottom {
4299
+ margin-bottom: 25px;
4300
+ }
4301
+ .description-block > .description-header {
4302
+ margin: 0;
4303
+ padding: 0;
4304
+ font-weight: 600;
4305
+ font-size: 16px;
4306
+ }
4307
+ .description-block > .description-text {
4308
+ text-transform: uppercase;
4309
+ }
4310
+ .bg-red,
4311
+ .bg-yellow,
4312
+ .bg-aqua,
4313
+ .bg-blue,
4314
+ .bg-light-blue,
4315
+ .bg-green,
4316
+ .bg-navy,
4317
+ .bg-teal,
4318
+ .bg-olive,
4319
+ .bg-lime,
4320
+ .bg-orange,
4321
+ .bg-fuchsia,
4322
+ .bg-purple,
4323
+ .bg-maroon,
4324
+ .bg-black,
4325
+ .bg-red-active,
4326
+ .bg-yellow-active,
4327
+ .bg-aqua-active,
4328
+ .bg-blue-active,
4329
+ .bg-light-blue-active,
4330
+ .bg-green-active,
4331
+ .bg-navy-active,
4332
+ .bg-teal-active,
4333
+ .bg-olive-active,
4334
+ .bg-lime-active,
4335
+ .bg-orange-active,
4336
+ .bg-fuchsia-active,
4337
+ .bg-purple-active,
4338
+ .bg-maroon-active,
4339
+ .bg-black-active,
4340
+ .callout.callout-danger,
4341
+ .callout.callout-warning,
4342
+ .callout.callout-info,
4343
+ .callout.callout-success,
4344
+ .alert-success,
4345
+ .alert-danger,
4346
+ .alert-error,
4347
+ .alert-warning,
4348
+ .alert-info,
4349
+ .label-danger,
4350
+ .label-info,
4351
+ .label-warning,
4352
+ .label-primary,
4353
+ .label-success,
4354
+ .modal-primary .modal-body,
4355
+ .modal-primary .modal-header,
4356
+ .modal-primary .modal-footer,
4357
+ .modal-warning .modal-body,
4358
+ .modal-warning .modal-header,
4359
+ .modal-warning .modal-footer,
4360
+ .modal-info .modal-body,
4361
+ .modal-info .modal-header,
4362
+ .modal-info .modal-footer,
4363
+ .modal-success .modal-body,
4364
+ .modal-success .modal-header,
4365
+ .modal-success .modal-footer,
4366
+ .modal-danger .modal-body,
4367
+ .modal-danger .modal-header,
4368
+ .modal-danger .modal-footer {
4369
+ color: #fff !important;
4370
+ }
4371
+ .bg-gray {
4372
+ color: #000;
4373
+ background-color: #d2d6de !important;
4374
+ }
4375
+ .bg-gray-light {
4376
+ background-color: #f7f7f7;
4377
+ }
4378
+ .bg-black {
4379
+ background-color: #111111 !important;
4380
+ }
4381
+ .bg-red,
4382
+ .callout.callout-danger,
4383
+ .alert-danger,
4384
+ .alert-error,
4385
+ .label-danger,
4386
+ .modal-danger .modal-body {
4387
+ background-color: #dd4b39 !important;
4388
+ }
4389
+ .bg-yellow,
4390
+ .callout.callout-warning,
4391
+ .alert-warning,
4392
+ .label-warning,
4393
+ .modal-warning .modal-body {
4394
+ background-color: #f39c12 !important;
4395
+ }
4396
+ .bg-aqua,
4397
+ .callout.callout-info,
4398
+ .alert-info,
4399
+ .label-info,
4400
+ .modal-info .modal-body {
4401
+ background-color: #00c0ef !important;
4402
+ }
4403
+ .bg-blue {
4404
+ background-color: #0073b7 !important;
4405
+ }
4406
+ .bg-light-blue,
4407
+ .label-primary,
4408
+ .modal-primary .modal-body {
4409
+ background-color: #3c8dbc !important;
4410
+ }
4411
+ .bg-green,
4412
+ .callout.callout-success,
4413
+ .alert-success,
4414
+ .label-success,
4415
+ .modal-success .modal-body {
4416
+ background-color: #00a65a !important;
4417
+ }
4418
+ .bg-navy {
4419
+ background-color: #001f3f !important;
4420
+ }
4421
+ .bg-teal {
4422
+ background-color: #39cccc !important;
4423
+ }
4424
+ .bg-olive {
4425
+ background-color: #3d9970 !important;
4426
+ }
4427
+ .bg-lime {
4428
+ background-color: #01ff70 !important;
4429
+ }
4430
+ .bg-orange {
4431
+ background-color: #ff851b !important;
4432
+ }
4433
+ .bg-fuchsia {
4434
+ background-color: #f012be !important;
4435
+ }
4436
+ .bg-purple {
4437
+ background-color: #605ca8 !important;
4438
+ }
4439
+ .bg-maroon {
4440
+ background-color: #d81b60 !important;
4441
+ }
4442
+ .bg-gray-active {
4443
+ color: #000;
4444
+ background-color: #b5bbc8 !important;
4445
+ }
4446
+ .bg-black-active {
4447
+ background-color: #000000 !important;
4448
+ }
4449
+ .bg-red-active,
4450
+ .modal-danger .modal-header,
4451
+ .modal-danger .modal-footer {
4452
+ background-color: #d33724 !important;
4453
+ }
4454
+ .bg-yellow-active,
4455
+ .modal-warning .modal-header,
4456
+ .modal-warning .modal-footer {
4457
+ background-color: #db8b0b !important;
4458
+ }
4459
+ .bg-aqua-active,
4460
+ .modal-info .modal-header,
4461
+ .modal-info .modal-footer {
4462
+ background-color: #00a7d0 !important;
4463
+ }
4464
+ .bg-blue-active {
4465
+ background-color: #005384 !important;
4466
+ }
4467
+ .bg-light-blue-active,
4468
+ .modal-primary .modal-header,
4469
+ .modal-primary .modal-footer {
4470
+ background-color: #357ca5 !important;
4471
+ }
4472
+ .bg-green-active,
4473
+ .modal-success .modal-header,
4474
+ .modal-success .modal-footer {
4475
+ background-color: #008d4c !important;
4476
+ }
4477
+ .bg-navy-active {
4478
+ background-color: #001a35 !important;
4479
+ }
4480
+ .bg-teal-active {
4481
+ background-color: #30bbbb !important;
4482
+ }
4483
+ .bg-olive-active {
4484
+ background-color: #368763 !important;
4485
+ }
4486
+ .bg-lime-active {
4487
+ background-color: #00e765 !important;
4488
+ }
4489
+ .bg-orange-active {
4490
+ background-color: #ff7701 !important;
4491
+ }
4492
+ .bg-fuchsia-active {
4493
+ background-color: #db0ead !important;
4494
+ }
4495
+ .bg-purple-active {
4496
+ background-color: #555299 !important;
4497
+ }
4498
+ .bg-maroon-active {
4499
+ background-color: #ca195a !important;
4500
+ }
4501
+ [class^="bg-"].disabled {
4502
+ opacity: 0.65;
4503
+ filter: alpha(opacity=65);
4504
+ }
4505
+ .text-red {
4506
+ color: #dd4b39 !important;
4507
+ }
4508
+ .text-yellow {
4509
+ color: #f39c12 !important;
4510
+ }
4511
+ .text-aqua {
4512
+ color: #00c0ef !important;
4513
+ }
4514
+ .text-blue {
4515
+ color: #0073b7 !important;
4516
+ }
4517
+ .text-black {
4518
+ color: #111111 !important;
4519
+ }
4520
+ .text-light-blue {
4521
+ color: #3c8dbc !important;
4522
+ }
4523
+ .text-green {
4524
+ color: #00a65a !important;
4525
+ }
4526
+ .text-gray {
4527
+ color: #d2d6de !important;
4528
+ }
4529
+ .text-navy {
4530
+ color: #001f3f !important;
4531
+ }
4532
+ .text-teal {
4533
+ color: #39cccc !important;
4534
+ }
4535
+ .text-olive {
4536
+ color: #3d9970 !important;
4537
+ }
4538
+ .text-lime {
4539
+ color: #01ff70 !important;
4540
+ }
4541
+ .text-orange {
4542
+ color: #ff851b !important;
4543
+ }
4544
+ .text-fuchsia {
4545
+ color: #f012be !important;
4546
+ }
4547
+ .text-purple {
4548
+ color: #605ca8 !important;
4549
+ }
4550
+ .text-maroon {
4551
+ color: #d81b60 !important;
4552
+ }
4553
+ .link-muted {
4554
+ color: #7a869d;
4555
+ }
4556
+ .link-muted:hover,
4557
+ .link-muted:focus {
4558
+ color: #606c84;
4559
+ }
4560
+ .link-black {
4561
+ color: #666;
4562
+ }
4563
+ .link-black:hover,
4564
+ .link-black:focus {
4565
+ color: #999;
4566
+ }
4567
+ .hide {
4568
+ display: none !important;
4569
+ }
4570
+ .no-border {
4571
+ border: 0 !important;
4572
+ }
4573
+ .no-padding {
4574
+ padding: 0 !important;
4575
+ }
4576
+ .no-margin {
4577
+ margin: 0 !important;
4578
+ }
4579
+ .no-shadow {
4580
+ box-shadow: none !important;
4581
+ }
4582
+ .list-unstyled,
4583
+ .chart-legend,
4584
+ .contacts-list,
4585
+ .users-list,
4586
+ .mailbox-attachments {
4587
+ list-style: none;
4588
+ margin: 0;
4589
+ padding: 0;
4590
+ }
4591
+ .list-group-unbordered > .list-group-item {
4592
+ border-left: 0;
4593
+ border-right: 0;
4594
+ border-radius: 0;
4595
+ padding-left: 0;
4596
+ padding-right: 0;
4597
+ }
4598
+ .flat {
4599
+ border-radius: 0 !important;
4600
+ }
4601
+ .text-bold,
4602
+ .text-bold.table td,
4603
+ .text-bold.table th {
4604
+ font-weight: 700;
4605
+ }
4606
+ .text-sm {
4607
+ font-size: 12px;
4608
+ }
4609
+ .jqstooltip {
4610
+ padding: 5px !important;
4611
+ width: auto !important;
4612
+ height: auto !important;
4613
+ }
4614
+ .bg-teal-gradient {
4615
+ background: #39cccc !important;
4616
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #39cccc), color-stop(1, #7adddd)) !important;
4617
+ background: -ms-linear-gradient(bottom, #39cccc, #7adddd) !important;
4618
+ background: -moz-linear-gradient(center bottom, #39cccc 0%, #7adddd 100%) !important;
4619
+ background: -o-linear-gradient(#7adddd, #39cccc) !important;
4620
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7adddd', endColorstr='#39cccc', GradientType=0) !important;
4621
+ color: #fff;
4622
+ }
4623
+ .bg-light-blue-gradient {
4624
+ background: #3c8dbc !important;
4625
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3c8dbc), color-stop(1, #67a8ce)) !important;
4626
+ background: -ms-linear-gradient(bottom, #3c8dbc, #67a8ce) !important;
4627
+ background: -moz-linear-gradient(center bottom, #3c8dbc 0%, #67a8ce 100%) !important;
4628
+ background: -o-linear-gradient(#67a8ce, #3c8dbc) !important;
4629
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#67a8ce', endColorstr='#3c8dbc', GradientType=0) !important;
4630
+ color: #fff;
4631
+ }
4632
+ .bg-blue-gradient {
4633
+ background: #0073b7 !important;
4634
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0073b7), color-stop(1, #0089db)) !important;
4635
+ background: -ms-linear-gradient(bottom, #0073b7, #0089db) !important;
4636
+ background: -moz-linear-gradient(center bottom, #0073b7 0%, #0089db 100%) !important;
4637
+ background: -o-linear-gradient(#0089db, #0073b7) !important;
4638
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0089db', endColorstr='#0073b7', GradientType=0) !important;
4639
+ color: #fff;
4640
+ }
4641
+ .bg-aqua-gradient {
4642
+ background: #00c0ef !important;
4643
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00c0ef), color-stop(1, #14d1ff)) !important;
4644
+ background: -ms-linear-gradient(bottom, #00c0ef, #14d1ff) !important;
4645
+ background: -moz-linear-gradient(center bottom, #00c0ef 0%, #14d1ff 100%) !important;
4646
+ background: -o-linear-gradient(#14d1ff, #00c0ef) !important;
4647
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#14d1ff', endColorstr='#00c0ef', GradientType=0) !important;
4648
+ color: #fff;
4649
+ }
4650
+ .bg-yellow-gradient {
4651
+ background: #f39c12 !important;
4652
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f39c12), color-stop(1, #f7bc60)) !important;
4653
+ background: -ms-linear-gradient(bottom, #f39c12, #f7bc60) !important;
4654
+ background: -moz-linear-gradient(center bottom, #f39c12 0%, #f7bc60 100%) !important;
4655
+ background: -o-linear-gradient(#f7bc60, #f39c12) !important;
4656
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7bc60', endColorstr='#f39c12', GradientType=0) !important;
4657
+ color: #fff;
4658
+ }
4659
+ .bg-purple-gradient {
4660
+ background: #605ca8 !important;
4661
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #605ca8), color-stop(1, #9491c4)) !important;
4662
+ background: -ms-linear-gradient(bottom, #605ca8, #9491c4) !important;
4663
+ background: -moz-linear-gradient(center bottom, #605ca8 0%, #9491c4 100%) !important;
4664
+ background: -o-linear-gradient(#9491c4, #605ca8) !important;
4665
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9491c4', endColorstr='#605ca8', GradientType=0) !important;
4666
+ color: #fff;
4667
+ }
4668
+ .bg-green-gradient {
4669
+ background: #00a65a !important;
4670
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00a65a), color-stop(1, #00ca6d)) !important;
4671
+ background: -ms-linear-gradient(bottom, #00a65a, #00ca6d) !important;
4672
+ background: -moz-linear-gradient(center bottom, #00a65a 0%, #00ca6d 100%) !important;
4673
+ background: -o-linear-gradient(#00ca6d, #00a65a) !important;
4674
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ca6d', endColorstr='#00a65a', GradientType=0) !important;
4675
+ color: #fff;
4676
+ }
4677
+ .bg-red-gradient {
4678
+ background: #dd4b39 !important;
4679
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dd4b39), color-stop(1, #e47365)) !important;
4680
+ background: -ms-linear-gradient(bottom, #dd4b39, #e47365) !important;
4681
+ background: -moz-linear-gradient(center bottom, #dd4b39 0%, #e47365 100%) !important;
4682
+ background: -o-linear-gradient(#e47365, #dd4b39) !important;
4683
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e47365', endColorstr='#dd4b39', GradientType=0) !important;
4684
+ color: #fff;
4685
+ }
4686
+ .bg-black-gradient {
4687
+ background: #111111 !important;
4688
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #111111), color-stop(1, #2b2b2b)) !important;
4689
+ background: -ms-linear-gradient(bottom, #111111, #2b2b2b) !important;
4690
+ background: -moz-linear-gradient(center bottom, #111111 0%, #2b2b2b 100%) !important;
4691
+ background: -o-linear-gradient(#2b2b2b, #111111) !important;
4692
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2b2b2b', endColorstr='#111111', GradientType=0) !important;
4693
+ color: #fff;
4694
+ }
4695
+ .bg-maroon-gradient {
4696
+ background: #d81b60 !important;
4697
+ background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #d81b60), color-stop(1, #e73f7c)) !important;
4698
+ background: -ms-linear-gradient(bottom, #d81b60, #e73f7c) !important;
4699
+ background: -moz-linear-gradient(center bottom, #d81b60 0%, #e73f7c 100%) !important;
4700
+ background: -o-linear-gradient(#e73f7c, #d81b60) !important;
4701
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e73f7c', endColorstr='#d81b60', GradientType=0) !important;
4702
+ color: #fff;
4703
+ }
4704
+ .description-block .description-icon {
4705
+ font-size: 16px;
4706
+ }
4707
+ .no-pad-top {
4708
+ padding-top: 0;
4709
+ }
4710
+ .position-static {
4711
+ position: static !important;
4712
+ }
4713
+ .list-header {
4714
+ font-size: 15px;
4715
+ padding: 10px 4px;
4716
+ font-weight: bold;
4717
+ color: #666;
4718
+ }
4719
+ .list-seperator {
4720
+ height: 1px;
4721
+ background: #f4f4f4;
4722
+ margin: 15px 0 9px 0;
4723
+ }
4724
+ .list-link > a {
4725
+ padding: 4px;
4726
+ color: #777;
4727
+ }
4728
+ .list-link > a:hover {
4729
+ color: #222;
4730
+ }
4731
+ .font-light {
4732
+ font-weight: 300;
4733
+ }
4734
+ .user-block:before,
4735
+ .user-block:after {
4736
+ content: " ";
4737
+ display: table;
4738
+ }
4739
+ .user-block:after {
4740
+ clear: both;
4741
+ }
4742
+ .user-block img {
4743
+ width: 40px;
4744
+ height: 40px;
4745
+ float: left;
4746
+ }
4747
+ .user-block .username,
4748
+ .user-block .description,
4749
+ .user-block .comment {
4750
+ display: block;
4751
+ margin-left: 50px;
4752
+ }
4753
+ .user-block .username {
4754
+ font-size: 16px;
4755
+ font-weight: 600;
4756
+ }
4757
+ .user-block .description {
4758
+ color: #999;
4759
+ font-size: 13px;
4760
+ }
4761
+ .user-block.user-block-sm .username,
4762
+ .user-block.user-block-sm .description,
4763
+ .user-block.user-block-sm .comment {
4764
+ margin-left: 40px;
4765
+ }
4766
+ .user-block.user-block-sm .username {
4767
+ font-size: 14px;
4768
+ }
4769
+ .img-sm,
4770
+ .img-md,
4771
+ .img-lg,
4772
+ .box-comments .box-comment img,
4773
+ .user-block.user-block-sm img {
4774
+ float: left;
4775
+ }
4776
+ .img-sm,
4777
+ .box-comments .box-comment img,
4778
+ .user-block.user-block-sm img {
4779
+ width: 30px !important;
4780
+ height: 30px !important;
4781
+ }
4782
+ .img-sm + .img-push {
4783
+ margin-left: 40px;
4784
+ }
4785
+ .img-md {
4786
+ width: 60px;
4787
+ height: 60px;
4788
+ }
4789
+ .img-md + .img-push {
4790
+ margin-left: 70px;
4791
+ }
4792
+ .img-lg {
4793
+ width: 100px;
4794
+ height: 100px;
4795
+ }
4796
+ .img-lg + .img-push {
4797
+ margin-left: 110px;
4798
+ }
4799
+ .img-bordered {
4800
+ border: 3px solid #d2d6de;
4801
+ padding: 3px;
4802
+ }
4803
+ .img-bordered-sm {
4804
+ border: 2px solid #d2d6de;
4805
+ padding: 2px;
4806
+ }
4807
+ .attachment-block {
4808
+ border: 1px solid #f4f4f4;
4809
+ padding: 5px;
4810
+ margin-bottom: 10px;
4811
+ background: #f7f7f7;
4812
+ }
4813
+ .attachment-block .attachment-img {
4814
+ max-width: 100px;
4815
+ max-height: 100px;
4816
+ height: auto;
4817
+ float: left;
4818
+ }
4819
+ .attachment-block .attachment-pushed {
4820
+ margin-left: 110px;
4821
+ }
4822
+ .attachment-block .attachment-heading {
4823
+ margin: 0;
4824
+ }
4825
+ .attachment-block .attachment-text {
4826
+ color: #555;
4827
+ }
4828
+ .connectedSortable {
4829
+ min-height: 100px;
4830
+ }
4831
+ .ui-helper-hidden-accessible {
4832
+ border: 0;
4833
+ clip: rect(0 0 0 0);
4834
+ height: 1px;
4835
+ margin: -1px;
4836
+ overflow: hidden;
4837
+ padding: 0;
4838
+ position: absolute;
4839
+ width: 1px;
4840
+ }
4841
+ .sort-highlight {
4842
+ background: #f4f4f4;
4843
+ border: 1px dashed #ddd;
4844
+ margin-bottom: 10px;
4845
+ }
4846
+ .full-opacity-hover {
4847
+ opacity: 0.65;
4848
+ filter: alpha(opacity=65);
4849
+ }
4850
+ .full-opacity-hover:hover {
4851
+ opacity: 1;
4852
+ filter: alpha(opacity=100);
4853
+ }
4854
+ .chart {
4855
+ position: relative;
4856
+ overflow: hidden;
4857
+ width: 100%;
4858
+ }
4859
+ .chart svg,
4860
+ .chart canvas {
4861
+ width: 100% !important;
4862
+ }
4863
+ /*
4864
+ * Misc: print
4865
+ * -----------
4866
+ */
4867
+ @media print {
4868
+ .no-print,
4869
+ .main-sidebar,
4870
+ .left-side,
4871
+ .main-header,
4872
+ .content-header {
4873
+ display: none !important;
4874
+ }
4875
+ .content-wrapper,
4876
+ .right-side,
4877
+ .main-footer {
4878
+ margin-left: 0 !important;
4879
+ min-height: 0 !important;
4880
+ -webkit-transform: translate(0, 0) !important;
4881
+ -ms-transform: translate(0, 0) !important;
4882
+ -o-transform: translate(0, 0) !important;
4883
+ transform: translate(0, 0) !important;
4884
+ }
4885
+ .fixed .content-wrapper,
4886
+ .fixed .right-side {
4887
+ padding-top: 0 !important;
4888
+ }
4889
+ .invoice {
4890
+ width: 100%;
4891
+ border: 0;
4892
+ margin: 0;
4893
+ padding: 0;
4894
+ }
4895
+ .invoice-col {
4896
+ float: left;
4897
+ width: 33.3333333%;
4898
+ }
4899
+ .table-responsive {
4900
+ overflow: auto;
4901
+ }
4902
+ .table-responsive > .table tr th,
4903
+ .table-responsive > .table tr td {
4904
+ white-space: normal !important;
4905
+ }
4906
+ }