wbase 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (117) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +219 -2
  3. data/app/assets/javascripts/wbase/auth/bootstrap.min.js +7 -0
  4. data/app/assets/javascripts/wbase/auth/detect.js +7 -0
  5. data/app/assets/javascripts/wbase/auth/fastclick.js +841 -0
  6. data/app/assets/javascripts/wbase/auth/jquery.app.js +318 -0
  7. data/app/assets/javascripts/wbase/auth/jquery.blockUI.js +620 -0
  8. data/app/assets/javascripts/wbase/auth/jquery.core.js +323 -0
  9. data/app/assets/javascripts/wbase/auth/jquery.min.js +5 -0
  10. data/app/assets/javascripts/wbase/auth/jquery.nicescroll.js +113 -0
  11. data/app/assets/javascripts/wbase/auth/jquery.scrollTo.min.js +7 -0
  12. data/app/assets/javascripts/wbase/auth/jquery.slimscroll.js +474 -0
  13. data/app/assets/javascripts/wbase/auth/modernizr.min.js +1 -0
  14. data/app/assets/javascripts/wbase/auth/pace.min.js +2 -0
  15. data/app/assets/javascripts/wbase/auth/waves.js +498 -0
  16. data/app/assets/javascripts/wbase/auth/wow.min.js +2 -0
  17. data/app/assets/javascripts/wbase/auth.js +12 -0
  18. data/app/assets/stylesheets/wbase/auth/components.css +2362 -0
  19. data/app/assets/stylesheets/wbase/auth/core.css +2190 -0
  20. data/app/assets/stylesheets/wbase/auth/icons.css +12067 -0
  21. data/app/assets/stylesheets/wbase/auth/pages.css +2039 -0
  22. data/app/assets/stylesheets/wbase/auth/responsive.css +162 -0
  23. data/app/assets/stylesheets/wbase/auth/typicons.css +1370 -0
  24. data/app/assets/stylesheets/wbase/auth/variables.css +0 -0
  25. data/app/assets/stylesheets/wbase/auth.scss +9 -0
  26. data/app/controllers/wbase/application_controller.rb +13 -0
  27. data/app/controllers/wbase/mail_events_controller.rb +21 -0
  28. data/app/controllers/wbase/password_resets_controller.rb +43 -0
  29. data/app/controllers/wbase/sessions_controller.rb +35 -0
  30. data/app/controllers/wbase/static_pages_controller.rb +4 -0
  31. data/app/controllers/wbase/stripe_webhooks_controller.rb +54 -0
  32. data/app/controllers/wbase/subscriptions_controller.rb +50 -0
  33. data/app/controllers/wbase/users_controller.rb +65 -0
  34. data/app/helpers/wbase/auth_helper.rb +44 -0
  35. data/app/jobs/wbase/activate_drip_subscriber_job.rb +15 -0
  36. data/app/jobs/wbase/create_drip_subscriber_job.rb +13 -0
  37. data/app/jobs/wbase/dripable.rb +22 -0
  38. data/app/mailers/application_mailer.rb +4 -0
  39. data/app/mailers/wbase/admin_mailer.rb +35 -0
  40. data/app/mailers/wbase/password_reset_mailer.rb +20 -0
  41. data/app/models/wbase/mail_event.rb +21 -0
  42. data/app/models/wbase/plan.rb +26 -0
  43. data/app/models/wbase/ssl_verification.rb +21 -0
  44. data/app/models/wbase/stripe_webhook.rb +22 -0
  45. data/app/models/wbase/subscription.rb +47 -0
  46. data/app/models/wbase/userable.rb +85 -0
  47. data/app/services/wbase/mail_event_batch.rb +22 -0
  48. data/app/services/wbase/start_subscription.rb +81 -0
  49. data/app/views/layouts/mailer.html.erb +53 -0
  50. data/app/views/layouts/mailer.text.erb +1 -0
  51. data/app/views/layouts/wbase/_common_head.html.erb +46 -0
  52. data/app/views/layouts/wbase/auth.html.erb +23 -0
  53. data/app/views/layouts/wbase/landing.html.erb +9 -56
  54. data/app/views/shared/_errors.html.erb +10 -0
  55. data/app/views/wbase/admin_mailer/new_subscription.html.erb +33 -0
  56. data/app/views/wbase/admin_mailer/new_user.html.erb +7 -0
  57. data/app/views/wbase/password_reset_mailer/reset.html.erb +10 -0
  58. data/app/views/wbase/password_reset_mailer/reset.text.erb +5 -0
  59. data/app/views/wbase/password_resets/edit.html.erb +22 -0
  60. data/app/views/wbase/password_resets/new.html.erb +41 -0
  61. data/app/views/wbase/sessions/new.html.erb +58 -0
  62. data/app/views/wbase/static_pages/landing/_pricing.html.erb +6 -2
  63. data/app/views/wbase/static_pages/start.html.erb +1 -1
  64. data/app/views/wbase/static_pages/welcome.html.erb +1 -1
  65. data/app/views/wbase/subscriptions/edit.html.erb +2 -0
  66. data/app/views/wbase/subscriptions/new.html.erb +91 -0
  67. data/app/views/wbase/subscriptions/show.html.erb +2 -0
  68. data/app/views/wbase/users/_affiliate.html.erb +66 -0
  69. data/app/views/wbase/users/_plan.html.erb +11 -0
  70. data/app/views/wbase/users/_plans.html.erb +11 -0
  71. data/app/views/wbase/users/edit.html.erb +2 -0
  72. data/app/views/wbase/users/new.html.erb +38 -0
  73. data/app/views/wbase/users/show.html.erb +37 -0
  74. data/config/initializers/assets.rb +1 -3
  75. data/config/routes.rb +9 -0
  76. data/db/migrate/20161127212521_create_wbase_subscriptions.rb +17 -0
  77. data/db/migrate/20161127212831_create_wbase_plans.rb +15 -0
  78. data/db/migrate/20161127224117_create_wbase_ssl_verifications.rb +10 -0
  79. data/db/migrate/20161128022640_create_wbase_mail_events.rb +16 -0
  80. data/db/migrate/20161128031211_create_wbase_stripe_webhooks.rb +17 -0
  81. data/lib/wbase/engine.rb +37 -28
  82. data/lib/wbase/version.rb +1 -1
  83. data/test/controllers/wbase/mail_events_controller_test.rb +13 -0
  84. data/test/controllers/wbase/password_resets_controller_test.rb +13 -0
  85. data/test/controllers/wbase/sessions_controller_test.rb +13 -0
  86. data/test/controllers/wbase/stripe_webhooks_controller_test.rb +13 -0
  87. data/test/controllers/wbase/subscriptions_controller_test.rb +13 -0
  88. data/test/controllers/wbase/users_controller_test.rb +13 -0
  89. data/test/dummy/config/database.yml +4 -7
  90. data/test/dummy/db/development.sqlite3 +0 -0
  91. data/test/dummy/db/schema.rb +85 -0
  92. data/test/dummy/log/development.log +225 -0
  93. data/test/fixtures/wbase/mail_events.yml +38 -0
  94. data/test/fixtures/wbase/plans.yml +40 -0
  95. data/test/fixtures/wbase/stripe_webhooks.yml +41 -0
  96. data/test/fixtures/wbase/subscriptions.yml +46 -0
  97. data/test/jobs/wbase/activate_drip_subscriber_job_test.rb +9 -0
  98. data/test/jobs/wbase/create_drip_subscriber_job_job_test.rb +9 -0
  99. data/test/mailers/previews/wbase/admin_mailer_preview.rb +11 -0
  100. data/test/mailers/previews/wbase/password_reset_mailer_preview.rb +11 -0
  101. data/test/mailers/wbase/admin_mailer_test.rb +14 -0
  102. data/test/mailers/wbase/password_reset_mailer_test.rb +14 -0
  103. data/test/models/wbase/mail_event_test.rb +26 -0
  104. data/test/models/wbase/plan_test.rb +30 -0
  105. data/test/models/wbase/ssl_verification_test.rb +20 -0
  106. data/test/models/wbase/stripe_webhook_test.rb +27 -0
  107. data/test/models/wbase/subscription_test.rb +32 -0
  108. metadata +121 -12
  109. data/app/helpers/wbase/application_helper.rb +0 -4
  110. data/app/helpers/wbase/static_pages_helper.rb +0 -4
  111. data/app/views/wbase/static_pages/_map.html.erb +0 -17
  112. data/app/views/wbase/static_pages/_order_stats.html.erb +0 -28
  113. data/app/views/wbase/static_pages/_pricing.html.erb +0 -89
  114. data/app/views/wbase/static_pages/_stats.html.erb +0 -28
  115. data/app/views/wbase/static_pages/_testimonial.html.erb +0 -16
  116. data/app/views/wbase/static_pages/affiliate.html.erb +0 -54
  117. data/app/views/wbase/static_pages/faq.html.erb +0 -63
@@ -0,0 +1,2190 @@
1
+ @import url(https://fonts.googleapis.com/css?family=Noto+Sans:400,700);
2
+ @import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700,300);
3
+ /*
4
+ Template Name: UBold Dashboard
5
+ Author: CoderThemes
6
+ Email: coderthemes@gmail.com
7
+ File: Core
8
+ */
9
+ /* =============
10
+ == Core List==
11
+
12
+ - Common
13
+ - Helper classes
14
+ - Extra
15
+ - Bootstrap Custom
16
+ - Topbar, Leftbar and Rightbar
17
+ - Animation (Some loader)
18
+ - Waves effect
19
+ - Print (Invoice css)
20
+
21
+ ============= */
22
+ /* =============
23
+ Common
24
+ ============= */
25
+ body {
26
+ background: #ebeff2;
27
+ font-family: 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
28
+ margin: 0;
29
+ overflow-x: hidden;
30
+ color: #797979;
31
+ }
32
+ html {
33
+ position: relative;
34
+ min-height: 100%;
35
+ background: #ebeff2;
36
+ }
37
+ h1,
38
+ h2,
39
+ h3,
40
+ h4,
41
+ h5,
42
+ h6 {
43
+ color: #505458;
44
+ font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
45
+ margin: 10px 0;
46
+ }
47
+ h1 {
48
+ line-height: 43px;
49
+ }
50
+ h2 {
51
+ line-height: 35px;
52
+ }
53
+ h3 {
54
+ line-height: 30px;
55
+ }
56
+ h3 small {
57
+ color: #444444;
58
+ }
59
+ h4 {
60
+ line-height: 22px;
61
+ }
62
+ h4 small {
63
+ color: #444444;
64
+ }
65
+ h5 {
66
+ font-size: 15px;
67
+ }
68
+ h5 small {
69
+ color: #444444;
70
+ }
71
+ p {
72
+ line-height: 1.6;
73
+ }
74
+ * {
75
+ outline: none !important;
76
+ }
77
+ b {
78
+ font-weight: 600;
79
+ }
80
+ a:hover {
81
+ outline: 0;
82
+ text-decoration: none;
83
+ }
84
+ a:active {
85
+ outline: 0;
86
+ text-decoration: none;
87
+ }
88
+ a:focus {
89
+ outline: 0;
90
+ text-decoration: none;
91
+ }
92
+ .container {
93
+ width: auto;
94
+ }
95
+ .container-alt {
96
+ margin-left: auto;
97
+ margin-right: auto;
98
+ padding-left: 15px;
99
+ padding-right: 15px;
100
+ }
101
+ /* Footer */
102
+ .footer {
103
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
104
+ bottom: 0px;
105
+ color: #58666e;
106
+ text-align: left !important;
107
+ padding: 20px 30px;
108
+ position: absolute;
109
+ right: 0px;
110
+ left: 240px;
111
+ font-size: 13px;
112
+ }
113
+ #wrapper {
114
+ height: 100%;
115
+ overflow: hidden;
116
+ width: 100%;
117
+ }
118
+ .page {
119
+ bottom: 0;
120
+ left: 0;
121
+ right: 0;
122
+ top: 0;
123
+ }
124
+ /* Page titles */
125
+ .page-title {
126
+ font-size: 20px;
127
+ font-weight: 600;
128
+ margin-bottom: 0px;
129
+ margin-top: 7px;
130
+ }
131
+ .page-title-alt {
132
+ margin-bottom: 23px;
133
+ margin-top: 10px;
134
+ }
135
+ .page-header {
136
+ border-bottom: 1px solid #DBDDDE;
137
+ }
138
+ .header-title {
139
+ text-transform: uppercase;
140
+ font-size: 16px;
141
+ font-weight: 600;
142
+ letter-spacing: 0.04em;
143
+ line-height: 16px;
144
+ margin-bottom: 8px;
145
+ }
146
+ .social-links li a {
147
+ -webkit-border-radius: 50%;
148
+ background: #EFF0F4;
149
+ border-radius: 50%;
150
+ color: #7A7676;
151
+ display: inline-block;
152
+ height: 30px;
153
+ line-height: 30px;
154
+ text-align: center;
155
+ width: 30px;
156
+ }
157
+ /* =============
158
+ Helper clasess
159
+ ============= */
160
+ .p-0 {
161
+ padding: 0px !important;
162
+ }
163
+ .p-20 {
164
+ padding: 20px !important;
165
+ }
166
+ .p-30 {
167
+ padding: 30px !important;
168
+ }
169
+ .p-l-0 {
170
+ padding-left: 0px !important;
171
+ }
172
+ .p-r-0 {
173
+ padding-right: 0px !important;
174
+ }
175
+ .p-t-0 {
176
+ padding-top: 0px !important;
177
+ }
178
+ .p-t-10 {
179
+ padding-top: 10px !important;
180
+ }
181
+ .p-b-0 {
182
+ padding-bottom: 0px !important;
183
+ }
184
+ .p-b-10 {
185
+ padding-bottom: 10px !important;
186
+ }
187
+ .p-l-r-10 {
188
+ padding-left: 10px;
189
+ padding-right: 10px;
190
+ }
191
+ .m-0 {
192
+ margin: 0px !important;
193
+ }
194
+ .m-r-5 {
195
+ margin-right: 5px !important;
196
+ }
197
+ .m-r-10 {
198
+ margin-right: 10px !important;
199
+ }
200
+ .m-r-15 {
201
+ margin-right: 15px !important;
202
+ }
203
+ .m-l-5 {
204
+ margin-left: 5px !important;
205
+ }
206
+ .m-l-10 {
207
+ margin-left: 10px !important;
208
+ }
209
+ .m-l-15 {
210
+ margin-left: 15px !important;
211
+ }
212
+ .m-t-5 {
213
+ margin-top: 5px !important;
214
+ }
215
+ .m-t-0 {
216
+ margin-top: 0px !important;
217
+ }
218
+ .m-t-10 {
219
+ margin-top: 10px !important;
220
+ }
221
+ .m-t-15 {
222
+ margin-top: 15px !important;
223
+ }
224
+ .m-t-20 {
225
+ margin-top: 20px !important;
226
+ }
227
+ .m-t-30 {
228
+ margin-top: 30px !important;
229
+ }
230
+ .m-t-40 {
231
+ margin-top: 40px !important;
232
+ }
233
+ .m-b-0 {
234
+ margin-bottom: 0px !important;
235
+ }
236
+ .m-b-5 {
237
+ margin-bottom: 5px !important;
238
+ }
239
+ .m-b-10 {
240
+ margin-bottom: 10px !important;
241
+ }
242
+ .m-b-15 {
243
+ margin-bottom: 15px !important;
244
+ }
245
+ .m-b-20 {
246
+ margin-bottom: 20px !important;
247
+ }
248
+ .m-b-30 {
249
+ margin-bottom: 30px !important;
250
+ }
251
+ .w-xs {
252
+ min-width: 80px;
253
+ }
254
+ .w-sm {
255
+ min-width: 95px;
256
+ }
257
+ .w-md {
258
+ min-width: 110px;
259
+ }
260
+ .w-lg {
261
+ min-width: 140px;
262
+ }
263
+ .m-h-40 {
264
+ min-height: 40px;
265
+ }
266
+ .m-h-50 {
267
+ min-height: 50px;
268
+ }
269
+ .l-h-34 {
270
+ line-height: 34px;
271
+ }
272
+ .font-600 {
273
+ font-weight: 600;
274
+ }
275
+ .font-bold {
276
+ font-weight: 700;
277
+ }
278
+ .font-normal {
279
+ font-weight: normal;
280
+ }
281
+ .font-light {
282
+ font-weight: 300;
283
+ }
284
+ .font-13 {
285
+ font-size: 13px !important;
286
+ }
287
+ .wrapper-md {
288
+ padding: 20px;
289
+ }
290
+ .pull-in {
291
+ margin-left: -15px;
292
+ margin-right: -15px;
293
+ }
294
+ .pull-in-card {
295
+ margin-left: -20px !important;
296
+ margin-right: -20px !important;
297
+ }
298
+ .b-0 {
299
+ border: none !important;
300
+ }
301
+ .vertical-middle {
302
+ vertical-align: middle;
303
+ }
304
+ .b-r-0 {
305
+ border-radius: 0px !important;
306
+ }
307
+ .bx-shadow {
308
+ -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
309
+ -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
310
+ box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
311
+ }
312
+ .mx-box {
313
+ max-height: 380px;
314
+ min-height: 380px;
315
+ }
316
+ .thumb-sm {
317
+ height: 32px;
318
+ width: 32px;
319
+ }
320
+ .thumb-md {
321
+ height: 48px;
322
+ width: 48px;
323
+ }
324
+ .thumb-lg {
325
+ height: 88px;
326
+ width: 88px;
327
+ }
328
+ /* =============
329
+ Extras
330
+ ============= */
331
+ /* Table type box */
332
+ .table-box {
333
+ display: table;
334
+ height: 100%;
335
+ width: 100%;
336
+ }
337
+ .table-box .table-detail {
338
+ display: table-cell;
339
+ vertical-align: middle;
340
+ }
341
+ /* Card Box */
342
+ .card-box {
343
+ padding: 20px;
344
+ border: 1px solid rgba(54, 64, 74, 0.05);
345
+ -webkit-border-radius: 5px;
346
+ border-radius: 5px;
347
+ -moz-border-radius: 5px;
348
+ background-clip: padding-box;
349
+ margin-bottom: 20px;
350
+ background-color: #ffffff;
351
+ }
352
+ /* Grid page */
353
+ .grid-structure .grid-container {
354
+ background-color: #f4f8fb;
355
+ margin-bottom: 10px;
356
+ padding: 10px 20px;
357
+ }
358
+ /* Demo only */
359
+ .icon-list-demo div {
360
+ cursor: pointer;
361
+ line-height: 45px;
362
+ white-space: nowrap;
363
+ color: #75798B;
364
+ }
365
+ .icon-list-demo div:hover {
366
+ color: #ffffff;
367
+ }
368
+ .icon-list-demo div p {
369
+ margin-bottom: 0px;
370
+ line-height: inherit;
371
+ }
372
+ .icon-list-demo i {
373
+ -webkit-transition: all 0.2s;
374
+ display: inline-block;
375
+ font-size: 18px;
376
+ margin: 0;
377
+ text-align: center;
378
+ transition: all 0.2s;
379
+ vertical-align: middle;
380
+ width: 40px;
381
+ }
382
+ .icon-list-demo .col-md-4 {
383
+ -webkit-border-radius: 3px;
384
+ border-radius: 3px;
385
+ -moz-border-radius: 3px;
386
+ background-clip: padding-box;
387
+ }
388
+ .icon-list-demo .col-md-4:hover {
389
+ background-color: #5fbeaa;
390
+ }
391
+ .icon-list-demo .col-md-4:hover i {
392
+ -o-transform: scale(2);
393
+ -webkit-transform: scale(2);
394
+ moz-transform: scale(2);
395
+ transform: scale(2);
396
+ }
397
+ .button-list {
398
+ margin-left: -8px;
399
+ margin-bottom: -12px;
400
+ }
401
+ .button-list .btn {
402
+ margin-bottom: 12px;
403
+ margin-left: 8px;
404
+ }
405
+ /* =============
406
+ Bootstrap-custom
407
+ ============= */
408
+ .row {
409
+ margin-right: -10px;
410
+ margin-left: -10px;
411
+ }
412
+ .col-lg-1,
413
+ .col-lg-10,
414
+ .col-lg-11,
415
+ .col-lg-12,
416
+ .col-lg-2,
417
+ .col-lg-3,
418
+ .col-lg-4,
419
+ .col-lg-5,
420
+ .col-lg-6,
421
+ .col-lg-7,
422
+ .col-lg-8,
423
+ .col-lg-9,
424
+ .col-md-1,
425
+ .col-md-10,
426
+ .col-md-11,
427
+ .col-md-12,
428
+ .col-md-2,
429
+ .col-md-3,
430
+ .col-md-4,
431
+ .col-md-5,
432
+ .col-md-6,
433
+ .col-md-7,
434
+ .col-md-8,
435
+ .col-md-9,
436
+ .col-sm-1,
437
+ .col-sm-10,
438
+ .col-sm-11,
439
+ .col-sm-12,
440
+ .col-sm-2,
441
+ .col-sm-3,
442
+ .col-sm-4,
443
+ .col-sm-5,
444
+ .col-sm-6,
445
+ .col-sm-7,
446
+ .col-sm-8,
447
+ .col-sm-9,
448
+ .col-xs-1,
449
+ .col-xs-10,
450
+ .col-xs-11,
451
+ .col-xs-12,
452
+ .col-xs-2,
453
+ .col-xs-3,
454
+ .col-xs-4,
455
+ .col-xs-5,
456
+ .col-xs-6,
457
+ .col-xs-7,
458
+ .col-xs-8,
459
+ .col-xs-9 {
460
+ padding-left: 10px;
461
+ padding-right: 10px;
462
+ }
463
+ .breadcrumb {
464
+ background-color: transparent;
465
+ margin-bottom: 15px;
466
+ padding-top: 10px;
467
+ padding-left: 0px;
468
+ }
469
+ /* Dropdown */
470
+ .dropdown-menu {
471
+ padding: 4px 0;
472
+ transition: all 300ms ease;
473
+ -moz-transition: all 300ms ease;
474
+ -webkit-transition: all 300ms ease;
475
+ -o-transition: all 300ms ease;
476
+ -ms-transition: all 300ms ease;
477
+ border: 0;
478
+ box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
479
+ }
480
+ .dropdown-menu > li > a {
481
+ padding: 6px 20px;
482
+ }
483
+ .dropdown-menu > .active > a,
484
+ .dropdown-menu > .active > a:hover,
485
+ .dropdown-menu > .active > a:focus {
486
+ background-color: #f3f3f3;
487
+ color: #36404a;
488
+ }
489
+ .dropup .dropdown-menu {
490
+ box-shadow: 0px -1px 5px 0 rgba(0, 0, 0, 0.26);
491
+ }
492
+ /* Close Icon */
493
+ .close {
494
+ opacity: .6;
495
+ }
496
+ /* Background colors */
497
+ .bg-custom {
498
+ background-color: #5fbeaa !important;
499
+ }
500
+ .bg-primary {
501
+ background-color: #5d9cec !important;
502
+ }
503
+ .bg-success {
504
+ background-color: #81c868 !important;
505
+ }
506
+ .bg-info {
507
+ background-color: #34d3eb !important;
508
+ }
509
+ .bg-warning {
510
+ background-color: #ffbd4a !important;
511
+ }
512
+ .bg-danger {
513
+ background-color: #f05050 !important;
514
+ }
515
+ .bg-muted {
516
+ background-color: #f4f8fb !important;
517
+ }
518
+ .bg-inverse {
519
+ background-color: #4c5667 !important;
520
+ }
521
+ .bg-purple {
522
+ background-color: #7266ba !important;
523
+ }
524
+ .bg-pink {
525
+ background-color: #fb6d9d !important;
526
+ }
527
+ .bg-white {
528
+ background-color: #ffffff !important;
529
+ }
530
+ .bg-lightdark {
531
+ background-color: #f4f8fb !important;
532
+ }
533
+ /* Text colors */
534
+ .text-custom {
535
+ color: #5fbeaa;
536
+ }
537
+ .text-white {
538
+ color: #ffffff;
539
+ }
540
+ .text-danger {
541
+ color: #f05050;
542
+ }
543
+ .text-muted {
544
+ color: #98a6ad;
545
+ }
546
+ .text-primary {
547
+ color: #5d9cec;
548
+ }
549
+ .text-warning {
550
+ color: #ffbd4a;
551
+ }
552
+ .text-success {
553
+ color: #81c868;
554
+ }
555
+ .text-info {
556
+ color: #34d3eb;
557
+ }
558
+ .text-inverse {
559
+ color: #4c5667;
560
+ }
561
+ .text-pink {
562
+ color: #fb6d9d;
563
+ }
564
+ .text-purple {
565
+ color: #7266ba;
566
+ }
567
+ .text-dark {
568
+ color: #797979 !important;
569
+ }
570
+ /* Form components */
571
+ textarea.form-control {
572
+ min-height: 90px;
573
+ }
574
+ .form-control {
575
+ background-color: #FFFFFF;
576
+ border: 1px solid #E3E3E3;
577
+ border-radius: 4px;
578
+ color: #565656;
579
+ padding: 7px 12px;
580
+ height: 38px;
581
+ max-width: 100%;
582
+ -webkit-box-shadow: none;
583
+ box-shadow: none;
584
+ -webkit-transition: all 300ms linear;
585
+ -moz-transition: all 300ms linear;
586
+ -o-transition: all 300ms linear;
587
+ -ms-transition: all 300ms linear;
588
+ transition: all 300ms linear;
589
+ }
590
+ .form-control:focus {
591
+ background-color: #FFFFFF;
592
+ border: 1px solid #AAAAAA;
593
+ -webkit-box-shadow: none;
594
+ box-shadow: none;
595
+ outline: 0 !important;
596
+ color: #333333;
597
+ }
598
+ .input-lg {
599
+ height: 46px;
600
+ padding: 10px 16px;
601
+ font-size: 18px;
602
+ line-height: 1.3333333;
603
+ border-radius: 6px;
604
+ }
605
+ .input-sm {
606
+ height: 30px;
607
+ padding: 5px 10px;
608
+ font-size: 12px;
609
+ line-height: 1.5;
610
+ border-radius: 3px;
611
+ }
612
+ .form-horizontal .form-group {
613
+ margin-left: -10px;
614
+ margin-right: -10px;
615
+ }
616
+ .form-control-feedback {
617
+ line-height: 38px !important;
618
+ }
619
+ .input-group-btn .btn {
620
+ padding: 8px 12px;
621
+ }
622
+ .input-group-btn .btn-sm {
623
+ padding: 5px 10px;
624
+ }
625
+ .input-group-btn .btn-lg {
626
+ padding: 10px 17px;
627
+ }
628
+ /* Labels */
629
+ .label {
630
+ font-weight: 600;
631
+ letter-spacing: 0.05em;
632
+ padding: .3em .6em .3em;
633
+ }
634
+ .label-default {
635
+ background-color: #5fbeaa;
636
+ }
637
+ .label-primary {
638
+ background-color: #5d9cec;
639
+ }
640
+ .label-success {
641
+ background-color: #81c868;
642
+ }
643
+ .label-info {
644
+ background-color: #34d3eb;
645
+ }
646
+ .label-warning {
647
+ background-color: #ffbd4a;
648
+ }
649
+ .label-danger {
650
+ background-color: #f05050;
651
+ }
652
+ .label-purple {
653
+ background-color: #7266ba;
654
+ }
655
+ .label-pink {
656
+ background-color: #fb6d9d;
657
+ }
658
+ .label-inverse {
659
+ background-color: #4c5667;
660
+ }
661
+ /* Badge */
662
+ .badge {
663
+ text-transform: uppercase;
664
+ font-weight: 600;
665
+ padding: 3px 5px;
666
+ font-size: 12px;
667
+ margin-top: 1px;
668
+ background-color: #5fbeaa;
669
+ }
670
+ .badge-xs {
671
+ font-size: 9px;
672
+ }
673
+ .badge-xs,
674
+ .badge-sm {
675
+ -webkit-transform: translate(0, -2px);
676
+ -ms-transform: translate(0, -2px);
677
+ -o-transform: translate(0, -2px);
678
+ transform: translate(0, -2px);
679
+ }
680
+ .badge-primary {
681
+ background-color: #5d9cec;
682
+ }
683
+ .badge-success {
684
+ background-color: #81c868;
685
+ }
686
+ .badge-info {
687
+ background-color: #34d3eb;
688
+ }
689
+ .badge-warning {
690
+ background-color: #ffbd4a;
691
+ }
692
+ .badge-danger {
693
+ background-color: #f05050;
694
+ }
695
+ .badge-purple {
696
+ background-color: #7266ba;
697
+ }
698
+ .badge-pink {
699
+ background-color: #fb6d9d;
700
+ }
701
+ .badge-inverse {
702
+ background-color: #4c5667;
703
+ }
704
+ /* Pagination/ Pager */
705
+ .pagination > li:first-child > a,
706
+ .pagination > li:first-child > span {
707
+ border-bottom-left-radius: 3px;
708
+ border-top-left-radius: 3px;
709
+ }
710
+ .pagination > li:last-child > a,
711
+ .pagination > li:last-child > span {
712
+ border-bottom-right-radius: 3px;
713
+ border-top-right-radius: 3px;
714
+ }
715
+ .pagination > li > a,
716
+ .pagination > li > span {
717
+ color: #636e7b;
718
+ }
719
+ .pagination > li > a:hover,
720
+ .pagination > li > span:hover,
721
+ .pagination > li > a:focus,
722
+ .pagination > li > span:focus {
723
+ background-color: #e4e7ea;
724
+ }
725
+ .pagination-split li {
726
+ margin-left: 5px;
727
+ display: inline-block;
728
+ float: left;
729
+ }
730
+ .pagination-split li:first-child {
731
+ margin-left: 0;
732
+ }
733
+ .pagination-split li a {
734
+ -moz-border-radius: 3px;
735
+ -webkit-border-radius: 3px;
736
+ border-radius: 3px;
737
+ }
738
+ .pagination > .active > a,
739
+ .pagination > .active > span,
740
+ .pagination > .active > a:hover,
741
+ .pagination > .active > span:hover,
742
+ .pagination > .active > a:focus,
743
+ .pagination > .active > span:focus {
744
+ background-color: #5fbeaa;
745
+ border-color: #5fbeaa;
746
+ }
747
+ .pager li > a,
748
+ .pager li > span {
749
+ -moz-border-radius: 3px;
750
+ -webkit-border-radius: 3px;
751
+ border-radius: 3px;
752
+ color: #636e7b;
753
+ }
754
+ /* Tabs */
755
+ .tabs {
756
+ background-color: #ffffff;
757
+ margin: 0 auto;
758
+ padding: 0px;
759
+ position: relative;
760
+ white-space: nowrap;
761
+ width: 100%;
762
+ }
763
+ .tabs li.tab {
764
+ background-color: #ffffff;
765
+ display: block;
766
+ float: left;
767
+ margin: 0;
768
+ text-align: center;
769
+ }
770
+ .tabs li.tab a {
771
+ -moz-transition: color 0.28s ease;
772
+ -ms-transition: color 0.28s ease;
773
+ -o-transition: color 0.28s ease;
774
+ -webkit-transition: color 0.28s ease;
775
+ color: #ee6e73;
776
+ display: block;
777
+ height: 100%;
778
+ text-decoration: none;
779
+ transition: color 0.28s ease;
780
+ width: 100%;
781
+ }
782
+ .tabs li.tab a.active {
783
+ color: #5fbeaa !important;
784
+ }
785
+ .tabs .indicator {
786
+ background-color: #5fbeaa;
787
+ bottom: 0;
788
+ height: 2px;
789
+ position: absolute;
790
+ will-change: left, right;
791
+ }
792
+ .tabs-top .indicator {
793
+ top: 0;
794
+ }
795
+ .nav-pills li a {
796
+ line-height: 36px !important;
797
+ }
798
+ .nav-pills li.active a {
799
+ background-color: #5fbeaa !important;
800
+ }
801
+ .nav-pills li.active a:hover {
802
+ background-color: #5fbeaa !important;
803
+ }
804
+ .nav-pills li.active a:focus {
805
+ background-color: #5fbeaa !important;
806
+ }
807
+ .nav.nav-tabs + .tab-content {
808
+ background: #ffffff;
809
+ margin-bottom: 30px;
810
+ padding: 30px;
811
+ }
812
+ .tabs-vertical-env {
813
+ margin-bottom: 30px;
814
+ }
815
+ .tabs-vertical-env .tab-content {
816
+ background: #ffffff;
817
+ display: table-cell;
818
+ margin-bottom: 30px;
819
+ padding: 30px;
820
+ vertical-align: top;
821
+ }
822
+ .tabs-vertical-env .nav.tabs-vertical {
823
+ display: table-cell;
824
+ min-width: 120px;
825
+ vertical-align: top;
826
+ width: 150px;
827
+ }
828
+ .tabs-vertical-env .nav.tabs-vertical li.active > a {
829
+ background-color: #ffffff;
830
+ border: 0;
831
+ }
832
+ .tabs-vertical-env .nav.tabs-vertical li > a {
833
+ color: #333333;
834
+ text-align: center;
835
+ white-space: nowrap;
836
+ }
837
+ .nav.nav-tabs > li.active > a {
838
+ background-color: #ffffff;
839
+ border: 0;
840
+ }
841
+ .nav.nav-tabs > li > a,
842
+ .nav.tabs-vertical > li > a {
843
+ background-color: transparent;
844
+ border-radius: 0;
845
+ border: none;
846
+ color: #505461 !important;
847
+ cursor: pointer;
848
+ line-height: 50px;
849
+ padding-left: 20px;
850
+ padding-right: 20px;
851
+ letter-spacing: 0.03em;
852
+ font-weight: 600;
853
+ text-transform: uppercase;
854
+ font-family: "Source Sans Pro", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
855
+ }
856
+ .nav.nav-tabs > li > a:hover,
857
+ .nav.tabs-vertical > li > a:hover {
858
+ color: #5fbeaa !important;
859
+ }
860
+ .tab-content {
861
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
862
+ color: #777777;
863
+ }
864
+ .nav.nav-tabs > li:last-of-type a {
865
+ margin-right: 0px;
866
+ }
867
+ .nav.nav-tabs {
868
+ border-bottom: 0;
869
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
870
+ }
871
+ .navtab-bg {
872
+ background-color: #f4f8fb;
873
+ }
874
+ .nav-tabs.nav-justified > .active > a,
875
+ .nav-tabs.nav-justified > .active > a:hover,
876
+ .nav-tabs.nav-justified > .active > a:focus,
877
+ .tabs-vertical-env .nav.tabs-vertical li.active > a {
878
+ border: none;
879
+ }
880
+ .nav-tabs > li.active > a,
881
+ .nav-tabs > li.active > a:focus,
882
+ .nav-tabs > li.active > a:hover,
883
+ .tabs-vertical > li.active > a,
884
+ .tabs-vertical > li.active > a:focus,
885
+ .tabs-vertical > li.active > a:hover {
886
+ color: #5fbeaa !important;
887
+ }
888
+ /* List group */
889
+ .list-group-item {
890
+ border: 1px solid #ebeff2;
891
+ }
892
+ /* Dropcap */
893
+ .dropcap {
894
+ font-size: 3.1em;
895
+ }
896
+ .dropcap,
897
+ .dropcap-circle,
898
+ .dropcap-square {
899
+ display: block;
900
+ float: left;
901
+ font-weight: 400;
902
+ line-height: 36px;
903
+ margin-right: 6px;
904
+ text-shadow: none;
905
+ }
906
+ /* Alert */
907
+ .alert .btn {
908
+ margin-top: 10px;
909
+ }
910
+ .alert-success {
911
+ background-color: rgba(95, 190, 170, 0.3);
912
+ border-color: rgba(95, 190, 170, 0.4);
913
+ color: #44a692;
914
+ }
915
+ .alert-success .alert-link {
916
+ color: #358272;
917
+ }
918
+ .alert-info {
919
+ background-color: rgba(52, 211, 235, 0.2);
920
+ border-color: rgba(52, 211, 235, 0.3);
921
+ color: #34d3eb;
922
+ }
923
+ .alert-warning {
924
+ background-color: rgba(255, 189, 74, 0.2);
925
+ border-color: rgba(255, 189, 74, 0.3);
926
+ color: #ffbd4a;
927
+ }
928
+ .alert-danger {
929
+ background-color: rgba(240, 80, 80, 0.2);
930
+ border-color: rgba(240, 80, 80, 0.3);
931
+ color: #f05050;
932
+ }
933
+ /* Modals */
934
+ .modal .modal-dialog .modal-content {
935
+ -moz-box-shadow: none;
936
+ -webkit-box-shadow: none;
937
+ border-color: #DDDDDD;
938
+ border-radius: 2px;
939
+ box-shadow: none;
940
+ padding: 25px;
941
+ }
942
+ .modal .modal-dialog .modal-content .modal-header {
943
+ border-bottom-width: 2px;
944
+ margin: 0;
945
+ padding: 0;
946
+ padding-bottom: 15px;
947
+ }
948
+ .modal .modal-dialog .modal-content .modal-body {
949
+ padding: 20px 0;
950
+ }
951
+ .modal .modal-dialog .modal-content .modal-footer {
952
+ padding: 0;
953
+ padding-top: 15px;
954
+ }
955
+ .modal-full {
956
+ width: 98%;
957
+ }
958
+ .modal-content .nav.nav-tabs + .tab-content {
959
+ margin-bottom: 0px;
960
+ }
961
+ .modal-content .panel-group {
962
+ margin-bottom: 0px;
963
+ }
964
+ .modal-content .panel {
965
+ border-top: none;
966
+ }
967
+ /* Custom-modal */
968
+ .modal-demo {
969
+ background-color: #FFF;
970
+ width: 600px;
971
+ -webkit-border-radius: 4px;
972
+ border-radius: 4px;
973
+ -moz-border-radius: 4px;
974
+ background-clip: padding-box;
975
+ display: none;
976
+ }
977
+ .modal-demo .close {
978
+ position: absolute;
979
+ top: 15px;
980
+ right: 25px;
981
+ color: #eeeeee;
982
+ }
983
+ .custom-modal-title {
984
+ padding: 15px 25px 15px 25px;
985
+ line-height: 22px;
986
+ font-size: 18px;
987
+ background-color: #36404a;
988
+ color: #ffffff;
989
+ text-align: left;
990
+ margin: 0px;
991
+ }
992
+ .custom-modal-text {
993
+ padding: 20px;
994
+ }
995
+ .custombox-modal-flash .close,
996
+ .custombox-modal-rotatedown .close {
997
+ top: 20px;
998
+ z-index: 9999;
999
+ }
1000
+ /* Tabs-Accordions */
1001
+ .tabs-vertical-env .tab-content {
1002
+ margin-bottom: 0px;
1003
+ }
1004
+ .table > thead > tr > td.middle-align,
1005
+ .table > tbody > tr > td.middle-align,
1006
+ .table > .tfood > tr > td.middle-align,
1007
+ .table > thead > tr > th.middle-align,
1008
+ .table > tbody > tr > th.middle-align,
1009
+ .table > .tfood > tr > th.middle-align {
1010
+ vertical-align: middle;
1011
+ }
1012
+ .list-group-item.active,
1013
+ .list-group-item.active:hover,
1014
+ .list-group-item.active:focus {
1015
+ background-color: #5fbeaa;
1016
+ border-color: #5fbeaa;
1017
+ }
1018
+ .nav-pills > .active > a > .badge {
1019
+ color: #5fbeaa;
1020
+ }
1021
+ .has-success .form-control {
1022
+ border-color: #81c868;
1023
+ box-shadow: none !important;
1024
+ }
1025
+ .has-warning .form-control {
1026
+ border-color: #ffbd4a;
1027
+ box-shadow: none !important;
1028
+ }
1029
+ .has-error .form-control {
1030
+ border-color: #f05050;
1031
+ box-shadow: none !important;
1032
+ }
1033
+ .input-group-addon {
1034
+ border-radius: 2px;
1035
+ border: 1px solid #eeeeee;
1036
+ }
1037
+ /* Tooltips */
1038
+ .tooltip-inner {
1039
+ border-radius: 1px;
1040
+ padding: 6px 10px;
1041
+ }
1042
+ .jqstooltip {
1043
+ -webkit-box-sizing: content-box;
1044
+ -moz-box-sizing: content-box;
1045
+ box-sizing: content-box;
1046
+ width: auto!important;
1047
+ height: auto!important;
1048
+ }
1049
+ /* Popover */
1050
+ .popover {
1051
+ font-family: inherit;
1052
+ border: none;
1053
+ -webkit-border-radius: 3px;
1054
+ border-radius: 3px;
1055
+ -moz-border-radius: 3px;
1056
+ background-clip: padding-box;
1057
+ }
1058
+ .popover .popover-title {
1059
+ background-color: transparent;
1060
+ color: #5fbeaa;
1061
+ font-weight: 600;
1062
+ }
1063
+ /* Code */
1064
+ code {
1065
+ color: #5d9cec;
1066
+ background-color: #f4f8fb;
1067
+ border-radius: 4px;
1068
+ }
1069
+ /* Pre */
1070
+ pre {
1071
+ background-color: #f4f8fb;
1072
+ border: 1px solid #d4d8da;
1073
+ }
1074
+ /* Well */
1075
+ .well {
1076
+ background-color: #f4f8fb;
1077
+ border: 1px solid #e4e4e4;
1078
+ }
1079
+ /* Carousel */
1080
+ .carousel-control {
1081
+ width: 10%;
1082
+ }
1083
+ .carousel-control span {
1084
+ position: absolute;
1085
+ top: 50%;
1086
+ /* pushes the icon in the middle of the height */
1087
+ z-index: 5;
1088
+ display: inline-block;
1089
+ font-size: 30px;
1090
+ }
1091
+ /* Owl */
1092
+ .slider-bg {
1093
+ background-size: cover !important;
1094
+ padding: 5.5% 4.5%;
1095
+ }
1096
+ /* Media */
1097
+ .media {
1098
+ margin-bottom: 20px;
1099
+ }
1100
+ .media .media-heading {
1101
+ font-weight: 600;
1102
+ font-size: 16px;
1103
+ }
1104
+ .media:last-of-type {
1105
+ margin-bottom: 0px;
1106
+ }
1107
+ /*===================================
1108
+ Topbar,Left-sidebar,Right-sidebar
1109
+ ===================================*/
1110
+ .topbar {
1111
+ left: 0px;
1112
+ position: fixed;
1113
+ right: 0;
1114
+ top: 0px;
1115
+ z-index: 999;
1116
+ }
1117
+ .topbar .topbar-left {
1118
+ float: left;
1119
+ position: relative;
1120
+ width: 240px;
1121
+ z-index: 1;
1122
+ }
1123
+ .topbar .topbar-left-sm {
1124
+ width: 180px;
1125
+ }
1126
+ .logo {
1127
+ color: #ffffff !important;
1128
+ font-size: 20px;
1129
+ font-weight: 700;
1130
+ letter-spacing: .05em;
1131
+ line-height: 60px;
1132
+ text-transform: uppercase;
1133
+ }
1134
+ .logo h1 {
1135
+ height: 50px;
1136
+ margin: 0px auto;
1137
+ text-align: center;
1138
+ }
1139
+ .logo i {
1140
+ color: #5fbeaa;
1141
+ }
1142
+ .logo .icon-c-logo {
1143
+ display: none;
1144
+ }
1145
+ .navbar-default {
1146
+ background-color: #36404a;
1147
+ border-radius: 0px;
1148
+ border: none;
1149
+ margin-bottom: 0px;
1150
+ }
1151
+ .navbar-default .navbar-nav > .open > a {
1152
+ background-color: rgba(255, 255, 255, 0.1);
1153
+ }
1154
+ .navbar-default .navbar-nav > .open > a:focus {
1155
+ background-color: rgba(255, 255, 255, 0.1);
1156
+ }
1157
+ .navbar-default .navbar-nav > .open > a:hover {
1158
+ background-color: rgba(255, 255, 255, 0.1);
1159
+ }
1160
+ .navbar-default .badge {
1161
+ position: absolute;
1162
+ top: 12px;
1163
+ right: 7px;
1164
+ }
1165
+ .nav > li > a {
1166
+ color: #ffffff !important;
1167
+ line-height: 60px;
1168
+ padding: 0px 15px;
1169
+ position: relative;
1170
+ }
1171
+ .nav > li > a i {
1172
+ font-size: 16px;
1173
+ }
1174
+ .profile img {
1175
+ border: 2px solid #edf0f0;
1176
+ height: 36px;
1177
+ width: 36px;
1178
+ }
1179
+ .dropdown-menu-lg {
1180
+ width: 300px;
1181
+ }
1182
+ .dropdown-menu-lg .list-group {
1183
+ margin-bottom: 0px;
1184
+ }
1185
+ .dropdown-menu-lg .list-group-item {
1186
+ border: none;
1187
+ padding: 10px 20px;
1188
+ }
1189
+ .dropdown-menu-lg .media-heading {
1190
+ margin-bottom: 0;
1191
+ }
1192
+ .dropdown-menu-lg .media-body p {
1193
+ color: #828282;
1194
+ }
1195
+ .notification-list {
1196
+ max-height: 230px;
1197
+ }
1198
+ .notification-list em {
1199
+ width: 30px;
1200
+ text-align: center;
1201
+ height: 30px;
1202
+ line-height: 28px;
1203
+ border-radius: 50%;
1204
+ margin-top: 4px;
1205
+ }
1206
+ .notification-list .media-body {
1207
+ display: inherit;
1208
+ width: auto;
1209
+ overflow: hidden;
1210
+ margin-left: 50px;
1211
+ }
1212
+ .notification-list .media-body h5 {
1213
+ text-overflow: ellipsis;
1214
+ white-space: nowrap;
1215
+ display: block;
1216
+ width: 100%;
1217
+ font-weight: normal;
1218
+ overflow: hidden;
1219
+ }
1220
+ .notifi-title {
1221
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
1222
+ font-size: 15px;
1223
+ text-transform: uppercase;
1224
+ font-weight: 600;
1225
+ padding: 11px 20px 15px;
1226
+ color: #4c5667;
1227
+ font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
1228
+ }
1229
+ .noti-primary {
1230
+ color: #5d9cec;
1231
+ border: 2px solid #5d9cec;
1232
+ }
1233
+ .noti-success {
1234
+ color: #81c868;
1235
+ border: 2px solid #81c868;
1236
+ }
1237
+ .noti-info {
1238
+ color: #34d3eb;
1239
+ border: 2px solid #34d3eb;
1240
+ }
1241
+ .noti-warning {
1242
+ color: #ffbd4a;
1243
+ border: 2px solid #ffbd4a;
1244
+ }
1245
+ .noti-danger {
1246
+ color: #f05050;
1247
+ border: 2px solid #f05050;
1248
+ }
1249
+ .noti-dark {
1250
+ color: #36404a;
1251
+ border: 2px solid #36404a;
1252
+ }
1253
+ .noti-purple {
1254
+ color: #7266ba;
1255
+ border: 2px solid #7266ba;
1256
+ }
1257
+ .noti-pink {
1258
+ color: #fb6d9d;
1259
+ border: 2px solid #fb6d9d;
1260
+ }
1261
+ .noti-custom {
1262
+ color: #5fbeaa;
1263
+ border: 2px solid #5fbeaa;
1264
+ }
1265
+ .noti-inverse {
1266
+ color: #4c5667;
1267
+ border: 2px solid #4c5667;
1268
+ }
1269
+ .navbar-nav {
1270
+ margin: 0;
1271
+ }
1272
+ .side-menu {
1273
+ bottom: 0;
1274
+ top: 0;
1275
+ width: 240px;
1276
+ z-index: 2;
1277
+ }
1278
+ .side-menu.left {
1279
+ background: #ffffff;
1280
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
1281
+ position: absolute;
1282
+ top: 60px;
1283
+ }
1284
+ body.fixed-left .side-menu.left {
1285
+ bottom: 50px;
1286
+ height: 100%;
1287
+ margin-bottom: -70px;
1288
+ margin-top: 0px;
1289
+ padding-bottom: 70px;
1290
+ position: fixed;
1291
+ }
1292
+ .content-page {
1293
+ margin-left: 240px;
1294
+ overflow: hidden;
1295
+ }
1296
+ .content-page > .content {
1297
+ margin-bottom: 60px;
1298
+ margin-top: 60px;
1299
+ padding: 20px 5px 15px 5px;
1300
+ }
1301
+ .button-menu-mobile {
1302
+ background: transparent;
1303
+ border: none;
1304
+ color: rgba(255, 255, 255, 0.7);
1305
+ font-size: 20px;
1306
+ line-height: 60px;
1307
+ padding: 0 15px;
1308
+ }
1309
+ .button-menu-mobile:hover {
1310
+ color: #ffffff;
1311
+ }
1312
+ .sidebar-inner {
1313
+ height: 100%;
1314
+ }
1315
+ #sidebar-menu,
1316
+ #sidebar-menu ul,
1317
+ #sidebar-menu li,
1318
+ #sidebar-menu a {
1319
+ border: 0;
1320
+ font-weight: normal;
1321
+ line-height: 1;
1322
+ list-style: none;
1323
+ margin: 0;
1324
+ padding: 0;
1325
+ position: relative;
1326
+ text-decoration: none;
1327
+ }
1328
+ #sidebar-menu {
1329
+ padding-bottom: 30px;
1330
+ padding-top: 30px;
1331
+ width: 100%;
1332
+ }
1333
+ #sidebar-menu .nav > li > a .badge {
1334
+ position: absolute;
1335
+ right: 10px;
1336
+ top: 12px;
1337
+ }
1338
+ #sidebar-menu a {
1339
+ line-height: 1.3;
1340
+ }
1341
+ #sidebar-menu ul ul {
1342
+ display: none;
1343
+ }
1344
+ #sidebar-menu ul ul li {
1345
+ border-top: 0;
1346
+ }
1347
+ #sidebar-menu ul ul li.active a {
1348
+ color: #5fbeaa;
1349
+ }
1350
+ #sidebar-menu ul ul a {
1351
+ color: #75798B;
1352
+ display: block;
1353
+ padding: 10px 20px 10px 65px;
1354
+ }
1355
+ #sidebar-menu ul ul a:hover {
1356
+ color: #5fbeaa;
1357
+ }
1358
+ #sidebar-menu ul ul a i {
1359
+ margin-right: 5px;
1360
+ }
1361
+ #sidebar-menu ul ul ul a {
1362
+ padding-left: 80px;
1363
+ }
1364
+ #sidebar-menu .label {
1365
+ margin-top: 2px;
1366
+ }
1367
+ #sidebar-menu .subdrop {
1368
+ background: #f4f8fb !important;
1369
+ border-left: 3px solid #5fbeaa;
1370
+ color: #5fbeaa !important;
1371
+ }
1372
+ #sidebar-menu > ul > li > a {
1373
+ color: #36404a;
1374
+ display: block;
1375
+ padding: 12px 20px;
1376
+ margin: 4px 0px;
1377
+ border-left: 3px solid #ffffff;
1378
+ }
1379
+ #sidebar-menu > ul > li > a:hover {
1380
+ color: #5fbeaa;
1381
+ text-decoration: none;
1382
+ }
1383
+ #sidebar-menu > ul > li > a > span {
1384
+ vertical-align: middle;
1385
+ }
1386
+ #sidebar-menu ul li .menu-arrow {
1387
+ -webkit-transition: -webkit-transform 0.15s;
1388
+ -o-transition: -o-transform 0.15s;
1389
+ transition: transform .15s;
1390
+ position: absolute;
1391
+ right: 20px;
1392
+ display: inline-block;
1393
+ font-family: 'Material Design Iconic Font';
1394
+ text-rendering: auto;
1395
+ line-height: 18px;
1396
+ font-size: 16px;
1397
+ -webkit-font-smoothing: antialiased;
1398
+ -moz-osx-font-smoothing: grayscale;
1399
+ -webkit-transform: translate(0, 0);
1400
+ -ms-transform: translate(0, 0);
1401
+ -o-transform: translate(0, 0);
1402
+ transform: translate(0, 0);
1403
+ color: #98a6ad;
1404
+ }
1405
+ #sidebar-menu ul li .menu-arrow:before {
1406
+ content: "\f1b6";
1407
+ }
1408
+ #sidebar-menu ul li a.subdrop .menu-arrow {
1409
+ -ms-transform: rotate(90deg);
1410
+ -webkit-transform: rotate(90deg);
1411
+ -o-transform: rotate(90deg);
1412
+ transform: rotate(90deg);
1413
+ }
1414
+ #sidebar-menu ul li a i {
1415
+ display: inline-block;
1416
+ font-size: 16px;
1417
+ line-height: 17px;
1418
+ margin-left: 3px;
1419
+ margin-right: 15px;
1420
+ text-align: center;
1421
+ vertical-align: middle;
1422
+ width: 20px;
1423
+ }
1424
+ #sidebar-menu ul li a i.md {
1425
+ font-size: 18px;
1426
+ }
1427
+ #sidebar-menu > ul > li > a > i.i-right {
1428
+ float: right;
1429
+ margin: 3px 0 0 0;
1430
+ }
1431
+ #sidebar-menu > ul > li > a.active {
1432
+ background: #f4f8fb !important;
1433
+ border-left: 3px solid #5fbeaa;
1434
+ color: #5fbeaa !important;
1435
+ }
1436
+ .menu-title {
1437
+ padding: 12px 20px !important;
1438
+ letter-spacing: .035em;
1439
+ pointer-events: none;
1440
+ cursor: default;
1441
+ font-size: 13px;
1442
+ }
1443
+ /* Small Menu */
1444
+ .side-menu-sm {
1445
+ width: 180px;
1446
+ text-align: center;
1447
+ }
1448
+ .side-menu-sm #sidebar-menu > ul > li > a > i {
1449
+ display: block;
1450
+ font-size: 18px;
1451
+ line-height: 24px;
1452
+ width: 100%;
1453
+ margin: 0px;
1454
+ }
1455
+ .side-menu-sm #sidebar-menu ul ul a {
1456
+ padding: 10px 20px 10px 20px;
1457
+ }
1458
+ .side-menu-sm + .content-page .footer {
1459
+ left: 180px;
1460
+ }
1461
+ #wrapper.enlarged .side-menu-sm {
1462
+ text-align: left;
1463
+ }
1464
+ #wrapper.enlarged .side-menu-sm #sidebar-menu ul li a i {
1465
+ display: inline-block;
1466
+ font-size: 18px;
1467
+ line-height: 17px;
1468
+ margin-left: 3px;
1469
+ margin-right: 15px;
1470
+ vertical-align: middle;
1471
+ width: 20px;
1472
+ }
1473
+ .side-menu-sm + .content-page {
1474
+ margin-left: 180px;
1475
+ }
1476
+ /* Header 2 */
1477
+ .page-header-2 {
1478
+ background: #E3E7EC;
1479
+ border-bottom: 1px solid #dee2e8;
1480
+ margin: -25px -20px 22px -20px;
1481
+ padding: 25px 20px 0px 20px;
1482
+ }
1483
+ #wrapper.enlarged .menu-title,
1484
+ #wrapper.enlarged .menu-arrow {
1485
+ display: none !important;
1486
+ }
1487
+ #wrapper.enlarged #sidebar-menu ul ul {
1488
+ border: 2px solid #f4f8fb;
1489
+ margin-top: -5px;
1490
+ padding-top: 5px;
1491
+ z-index: 9999;
1492
+ background-color: #ffffff;
1493
+ }
1494
+ #wrapper.enlarged .left.side-menu {
1495
+ width: 70px;
1496
+ z-index: 5;
1497
+ }
1498
+ #wrapper.enlarged .left.side-menu #sidebar-menu > ul > li > a {
1499
+ padding: 15px 20px;
1500
+ }
1501
+ #wrapper.enlarged .left.side-menu #sidebar-menu > ul > li > a:hover {
1502
+ background: #f4f8fb!important;
1503
+ }
1504
+ #wrapper.enlarged .left.side-menu #sidebar-menu > ul > li > a:active {
1505
+ background: #f4f8fb!important;
1506
+ }
1507
+ #wrapper.enlarged .left.side-menu #sidebar-menu > ul > li > a:focus {
1508
+ background: #f4f8fb!important;
1509
+ }
1510
+ #wrapper.enlarged .left.side-menu #sidebar-menu > ul > li > a i {
1511
+ margin-right: 20px !important;
1512
+ font-size: 20px;
1513
+ }
1514
+ #wrapper.enlarged .left.side-menu .label {
1515
+ position: absolute;
1516
+ top: 5px;
1517
+ left: 35px;
1518
+ text-indent: 0;
1519
+ display: block !important;
1520
+ padding: .2em .6em .3em !important;
1521
+ }
1522
+ #wrapper.enlarged .left.side-menu #sidebar-menu ul > li {
1523
+ position: relative;
1524
+ white-space: nowrap;
1525
+ }
1526
+ #wrapper.enlarged .left.side-menu #sidebar-menu ul > li:hover > a {
1527
+ position: relative;
1528
+ width: 260px;
1529
+ background: #f4f8fb;
1530
+ color: #5fbeaa;
1531
+ border-color: #5fbeaa;
1532
+ }
1533
+ #wrapper.enlarged .left.side-menu #sidebar-menu ul > li:hover > ul {
1534
+ display: block;
1535
+ left: 70px;
1536
+ position: absolute;
1537
+ width: 190px;
1538
+ }
1539
+ #wrapper.enlarged .left.side-menu #sidebar-menu ul > li:hover > ul a {
1540
+ background: #ffffff;
1541
+ box-shadow: none;
1542
+ padding-left: 15px;
1543
+ position: relative;
1544
+ width: 186px;
1545
+ z-index: 6;
1546
+ }
1547
+ #wrapper.enlarged .left.side-menu #sidebar-menu ul > li:hover > ul a:hover {
1548
+ color: #5fbeaa;
1549
+ }
1550
+ #wrapper.enlarged .left.side-menu #sidebar-menu ul > li:hover a span {
1551
+ display: inline;
1552
+ }
1553
+ #wrapper.enlarged .left.side-menu #sidebar-menu li .show-menu + ul {
1554
+ display: block;
1555
+ left: 70px;
1556
+ position: absolute;
1557
+ width: 190px;
1558
+ }
1559
+ #wrapper.enlarged .left.side-menu #sidebar-menu li .show-menu + ul a {
1560
+ background: #ffffff;
1561
+ box-shadow: none;
1562
+ padding-left: 15px;
1563
+ position: relative;
1564
+ width: 186px;
1565
+ z-index: 6;
1566
+ }
1567
+ #wrapper.enlarged .left.side-menu #sidebar-menu li .show-menu + ul a:hover {
1568
+ color: #5fbeaa;
1569
+ }
1570
+ #wrapper.enlarged .left.side-menu #sidebar-menu a.subdrop {
1571
+ color: #5fbeaa !important;
1572
+ }
1573
+ #wrapper.enlarged .left.side-menu #sidebar-menu ul > li > ul {
1574
+ display: none;
1575
+ }
1576
+ #wrapper.enlarged .left.side-menu #sidebar-menu ul ul li:hover > ul {
1577
+ display: block;
1578
+ left: 190px;
1579
+ margin-top: -36px;
1580
+ position: absolute;
1581
+ width: 190px;
1582
+ }
1583
+ #wrapper.enlarged .left.side-menu #sidebar-menu ul ul li > a span.pull-right {
1584
+ -ms-transform: rotate(270deg);
1585
+ -webkit-transform: rotate(270deg);
1586
+ position: absolute;
1587
+ right: 20px;
1588
+ top: 12px;
1589
+ transform: rotate(270deg);
1590
+ }
1591
+ #wrapper.enlarged .left.side-menu #sidebar-menu ul ul li.active a {
1592
+ color: #5fbeaa;
1593
+ }
1594
+ #wrapper.enlarged .left.side-menu #sidebar-menu ul > li > a span {
1595
+ display: none;
1596
+ padding-left: 10px;
1597
+ }
1598
+ #wrapper.enlarged .left.side-menu .user-details {
1599
+ display: none;
1600
+ }
1601
+ #wrapper.enlarged .content-page {
1602
+ margin-left: 70px;
1603
+ }
1604
+ #wrapper.enlarged .footer {
1605
+ left: 70px;
1606
+ }
1607
+ #wrapper.enlarged .topbar .topbar-left {
1608
+ width: 70px !important;
1609
+ }
1610
+ #wrapper.enlarged .topbar .topbar-left .logo span {
1611
+ display: none;
1612
+ opacity: 0;
1613
+ }
1614
+ #wrapper.enlarged .topbar .topbar-left .logo .icon-c-logo {
1615
+ display: block;
1616
+ line-height: 60px;
1617
+ }
1618
+ #wrapper.enlarged #sidebar-menu > ul > li:hover > a.open :after {
1619
+ display: none;
1620
+ }
1621
+ #wrapper.enlarged #sidebar-menu > ul > li:hover > a.active :after {
1622
+ display: none;
1623
+ }
1624
+ #wrapper.enlarged .tips-box {
1625
+ display: none;
1626
+ }
1627
+ .tips-box .portlet {
1628
+ -webkit-box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.05);
1629
+ -moz-box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.05);
1630
+ box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.05);
1631
+ }
1632
+ .user-details {
1633
+ padding: 20px;
1634
+ padding-bottom: 0px;
1635
+ position: relative;
1636
+ }
1637
+ .user-details img {
1638
+ position: relative;
1639
+ z-index: 9999;
1640
+ }
1641
+ .user-details .user-info {
1642
+ color: #444444;
1643
+ margin-left: 60px;
1644
+ position: relative;
1645
+ z-index: 99999;
1646
+ }
1647
+ .user-details .user-info a.dropdown-toggle {
1648
+ color: #797979;
1649
+ display: block;
1650
+ font-family: 'Roboto', sans-serif;
1651
+ font-size: 16px;
1652
+ font-weight: 600;
1653
+ padding-top: 5px;
1654
+ }
1655
+ #wrapper.right-bar-enabled .right-bar {
1656
+ right: 0;
1657
+ }
1658
+ #wrapper.right-bar-enabled .left-layout {
1659
+ left: 0;
1660
+ }
1661
+ /* Right sidebar */
1662
+ .side-bar.right-bar {
1663
+ float: right !important;
1664
+ right: -266px;
1665
+ top: 60px;
1666
+ }
1667
+ .side-bar {
1668
+ -moz-transition: all 200ms ease-out;
1669
+ -webkit-transition: all 200ms ease-out;
1670
+ background-color: #ffffff;
1671
+ box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1);
1672
+ display: block;
1673
+ float: left;
1674
+ height: 100%;
1675
+ overflow-y: auto;
1676
+ position: fixed;
1677
+ transition: all 200ms ease-out;
1678
+ width: 240px;
1679
+ }
1680
+ .right-bar {
1681
+ background: #ffffff !important;
1682
+ z-index: 99 !important;
1683
+ }
1684
+ .right-bar h4 {
1685
+ border-bottom: 1px solid #eeeeee;
1686
+ padding-bottom: 10px;
1687
+ }
1688
+ .contact-list {
1689
+ max-height: 600px;
1690
+ }
1691
+ .contact-list .list-group-item {
1692
+ border: none;
1693
+ }
1694
+ .contact-list .list-group-item:hover {
1695
+ background: #ebeff2;
1696
+ }
1697
+ .contact-list i.offline {
1698
+ color: #f05050 !important;
1699
+ }
1700
+ .contact-list i.away {
1701
+ color: #ffbd4a;
1702
+ }
1703
+ .contacts-list .avatar {
1704
+ display: inline-block;
1705
+ float: left;
1706
+ margin-right: 5px;
1707
+ width: 30px;
1708
+ }
1709
+ .contacts-list .avatar img {
1710
+ border-radius: 50%;
1711
+ width: 100%;
1712
+ }
1713
+ .contacts-list .list-group-item span.name {
1714
+ color: #707780;
1715
+ display: inline-block;
1716
+ float: left;
1717
+ overflow: hidden;
1718
+ padding-left: 5px;
1719
+ padding-top: 6px;
1720
+ text-overflow: ellipsis;
1721
+ white-space: nowrap;
1722
+ width: 130px;
1723
+ }
1724
+ .contacts-list i {
1725
+ color: #7a8c9a;
1726
+ float: right;
1727
+ font-size: 9px;
1728
+ line-height: 30px;
1729
+ }
1730
+ .contacts-list i.online {
1731
+ color: #a0d269;
1732
+ }
1733
+ .contacts-list i.offline {
1734
+ color: #f05050 !important;
1735
+ }
1736
+ .contacts-list i.away {
1737
+ color: #ffbd4a;
1738
+ }
1739
+ .app-search {
1740
+ position: relative;
1741
+ margin: 15px 0px 15px 10px;
1742
+ }
1743
+ .app-search a {
1744
+ position: absolute;
1745
+ top: 5px;
1746
+ right: 20px;
1747
+ color: #c4c4cd;
1748
+ }
1749
+ .app-search .form-control,
1750
+ .app-search .form-control:focus {
1751
+ border: none;
1752
+ font-size: 13px;
1753
+ color: #ffffff;
1754
+ padding-left: 20px;
1755
+ padding-right: 40px;
1756
+ background: rgba(255, 255, 255, 0.1);
1757
+ box-shadow: none;
1758
+ border-radius: 30px;
1759
+ height: 30px;
1760
+ font-weight: 600;
1761
+ width: 180px;
1762
+ }
1763
+ /* =============
1764
+ Animation
1765
+ ============= */
1766
+ /* Bounce 1 */
1767
+ @-webkit-keyframes cd-bounce-1 {
1768
+ 0% {
1769
+ opacity: 0;
1770
+ -webkit-transform: scale(0.5);
1771
+ }
1772
+ 60% {
1773
+ opacity: 1;
1774
+ -webkit-transform: scale(1.2);
1775
+ }
1776
+ 100% {
1777
+ -webkit-transform: scale(1);
1778
+ }
1779
+ }
1780
+ @-moz-keyframes cd-bounce-1 {
1781
+ 0% {
1782
+ opacity: 0;
1783
+ -moz-transform: scale(0.5);
1784
+ }
1785
+ 60% {
1786
+ opacity: 1;
1787
+ -moz-transform: scale(1.2);
1788
+ }
1789
+ 100% {
1790
+ -moz-transform: scale(1);
1791
+ }
1792
+ }
1793
+ @-o-keyframes cd-bounce-1 {
1794
+ 0% {
1795
+ opacity: 0;
1796
+ -o-transform: scale(0.5);
1797
+ }
1798
+ 60% {
1799
+ opacity: 1;
1800
+ -o-transform: scale(1.2);
1801
+ }
1802
+ 100% {
1803
+ -o-transform: scale(1);
1804
+ }
1805
+ }
1806
+ @keyframes cd-bounce-1 {
1807
+ 0% {
1808
+ opacity: 0;
1809
+ -webkit-transform: scale(0.5);
1810
+ -moz-transform: scale(0.5);
1811
+ -ms-transform: scale(0.5);
1812
+ -o-transform: scale(0.5);
1813
+ transform: scale(0.5);
1814
+ }
1815
+ 60% {
1816
+ opacity: 1;
1817
+ -webkit-transform: scale(1.2);
1818
+ -moz-transform: scale(1.2);
1819
+ -ms-transform: scale(1.2);
1820
+ -o-transform: scale(1.2);
1821
+ transform: scale(1.2);
1822
+ }
1823
+ 100% {
1824
+ opacity: 1;
1825
+ -webkit-transform: scale(1);
1826
+ -moz-transform: scale(1);
1827
+ -ms-transform: scale(1);
1828
+ -o-transform: scale(1);
1829
+ transform: scale(1);
1830
+ }
1831
+ }
1832
+ /* Bounce 2 */
1833
+ @-webkit-keyframes cd-bounce-2 {
1834
+ 0% {
1835
+ opacity: 0;
1836
+ -webkit-transform: translateX(-100px);
1837
+ }
1838
+ 60% {
1839
+ opacity: 1;
1840
+ -webkit-transform: translateX(20px);
1841
+ }
1842
+ 100% {
1843
+ -webkit-transform: translateX(0);
1844
+ }
1845
+ }
1846
+ @-moz-keyframes cd-bounce-2 {
1847
+ 0% {
1848
+ opacity: 0;
1849
+ -moz-transform: translateX(-100px);
1850
+ }
1851
+ 60% {
1852
+ opacity: 1;
1853
+ -moz-transform: translateX(20px);
1854
+ }
1855
+ 100% {
1856
+ -moz-transform: translateX(0);
1857
+ }
1858
+ }
1859
+ @-o-keyframes cd-bounce-2 {
1860
+ 0% {
1861
+ opacity: 0;
1862
+ -o-transform: translateX(-100px);
1863
+ }
1864
+ 60% {
1865
+ opacity: 1;
1866
+ -o-transform: translateX(20px);
1867
+ }
1868
+ 100% {
1869
+ opacity: 1;
1870
+ -o-transform: translateX(0);
1871
+ }
1872
+ }
1873
+ @keyframes cd-bounce-2 {
1874
+ 0% {
1875
+ opacity: 0;
1876
+ -webkit-transform: translateX(-100px);
1877
+ -moz-transform: translateX(-100px);
1878
+ -ms-transform: translateX(-100px);
1879
+ -o-transform: translateX(-100px);
1880
+ transform: translateX(-100px);
1881
+ }
1882
+ 60% {
1883
+ opacity: 1;
1884
+ -webkit-transform: translateX(20px);
1885
+ -moz-transform: translateX(20px);
1886
+ -ms-transform: translateX(20px);
1887
+ -o-transform: translateX(20px);
1888
+ transform: translateX(20px);
1889
+ }
1890
+ 100% {
1891
+ opacity: 1;
1892
+ -webkit-transform: translateX(0);
1893
+ -moz-transform: translateX(0);
1894
+ -ms-transform: translateX(0);
1895
+ -o-transform: translateX(0);
1896
+ transform: translateX(0);
1897
+ }
1898
+ }
1899
+ /* Dropdown */
1900
+ @-webkit-keyframes dropdownOpen {
1901
+ 0% {
1902
+ opacity: 0;
1903
+ -webkit-transform: scale(0);
1904
+ }
1905
+ 100% {
1906
+ -webkit-transform: scale(1);
1907
+ }
1908
+ }
1909
+ @-moz-keyframes dropdownOpen {
1910
+ 0% {
1911
+ opacity: 0;
1912
+ -moz-transform: scale(0);
1913
+ }
1914
+ 100% {
1915
+ -moz-transform: scale(1);
1916
+ }
1917
+ }
1918
+ @-o-keyframes dropdownOpen {
1919
+ 0% {
1920
+ opacity: 0;
1921
+ -o-transform: scale(0);
1922
+ }
1923
+ 100% {
1924
+ -o-transform: scale(1);
1925
+ }
1926
+ }
1927
+ @keyframes dropdownOpen {
1928
+ 0% {
1929
+ opacity: 0;
1930
+ -webkit-transform: scale(0);
1931
+ -moz-transform: scale(0);
1932
+ -ms-transform: scale(0);
1933
+ -o-transform: scale(0);
1934
+ transform: scale(0);
1935
+ }
1936
+ 100% {
1937
+ opacity: 1;
1938
+ -webkit-transform: scale(1);
1939
+ -moz-transform: scale(1);
1940
+ -ms-transform: scale(1);
1941
+ -o-transform: scale(1);
1942
+ transform: scale(1);
1943
+ }
1944
+ }
1945
+ /* Progressbar Animated */
1946
+ @-webkit-keyframes animationProgress {
1947
+ from {
1948
+ width: 0;
1949
+ }
1950
+ }
1951
+ @keyframes animationProgress {
1952
+ from {
1953
+ width: 0;
1954
+ }
1955
+ }
1956
+ /* Portlets loader */
1957
+ @-webkit-keyframes loaderAnimate {
1958
+ 0% {
1959
+ -webkit-transform: rotate(0deg);
1960
+ }
1961
+ 100% {
1962
+ -webkit-transform: rotate(220deg);
1963
+ }
1964
+ }
1965
+ @-moz-keyframes loaderAnimate {
1966
+ 0% {
1967
+ -moz-transform: rotate(0deg);
1968
+ }
1969
+ 100% {
1970
+ -moz-transform: rotate(220deg);
1971
+ }
1972
+ }
1973
+ @-o-keyframes loaderAnimate {
1974
+ 0% {
1975
+ -o-transform: rotate(0deg);
1976
+ }
1977
+ 100% {
1978
+ -o-transform: rotate(220deg);
1979
+ }
1980
+ }
1981
+ @keyframes loaderAnimate {
1982
+ 0% {
1983
+ transform: rotate(0deg);
1984
+ }
1985
+ 100% {
1986
+ transform: rotate(220deg);
1987
+ }
1988
+ }
1989
+ @-webkit-keyframes loaderAnimate2 {
1990
+ 0% {
1991
+ box-shadow: inset #555 0 0 0 8px;
1992
+ -webkit-transform: rotate(-140deg);
1993
+ }
1994
+ 50% {
1995
+ box-shadow: inset #555 0 0 0 2px;
1996
+ }
1997
+ 100% {
1998
+ box-shadow: inset #555 0 0 0 8px;
1999
+ -webkit-transform: rotate(140deg);
2000
+ }
2001
+ }
2002
+ @-moz-keyframes loaderAnimate2 {
2003
+ 0% {
2004
+ box-shadow: inset #555 0 0 0 8px;
2005
+ -moz-transform: rotate(-140deg);
2006
+ }
2007
+ 50% {
2008
+ box-shadow: inset #555 0 0 0 2px;
2009
+ }
2010
+ 100% {
2011
+ box-shadow: inset #555 0 0 0 8px;
2012
+ -moz-transform: rotate(140deg);
2013
+ }
2014
+ }
2015
+ @-o-keyframes loaderAnimate2 {
2016
+ 0% {
2017
+ box-shadow: inset #555 0 0 0 8px;
2018
+ -o-transform: rotate(-140deg);
2019
+ }
2020
+ 50% {
2021
+ box-shadow: inset #555 0 0 0 2px;
2022
+ }
2023
+ 100% {
2024
+ box-shadow: inset #555 0 0 0 8px;
2025
+ -o-transform: rotate(140deg);
2026
+ }
2027
+ }
2028
+ @keyframes loaderAnimate2 {
2029
+ 0% {
2030
+ box-shadow: inset #555 0 0 0 8px;
2031
+ -webkit-transform: rotate(-140deg);
2032
+ -moz-transform: rotate(-140deg);
2033
+ -ms-transform: rotate(-140deg);
2034
+ transform: rotate(-140deg);
2035
+ }
2036
+ 50% {
2037
+ box-shadow: inset #555 0 0 0 2px;
2038
+ }
2039
+ 100% {
2040
+ box-shadow: inset #555 0 0 0 8px;
2041
+ -webkit-transform: rotate(140deg);
2042
+ -moz-transform: rotate(140deg);
2043
+ -ms-transform: rotate(140deg);
2044
+ transform: rotate(140deg);
2045
+ }
2046
+ }
2047
+ @keyframes loaderAnimate2 {
2048
+ 0% {
2049
+ box-shadow: inset #999 0 0 0 17px;
2050
+ transform: rotate(-140deg);
2051
+ }
2052
+ 50% {
2053
+ box-shadow: inset #999 0 0 0 2px;
2054
+ }
2055
+ 100% {
2056
+ box-shadow: inset #999 0 0 0 17px;
2057
+ transform: rotate(140deg);
2058
+ }
2059
+ }
2060
+ /*!
2061
+ * Waves v0.6.0
2062
+ * http://fian.my.id/Waves
2063
+ *
2064
+ * Copyright 2014 Alfiana E. Sibuea and other contributors
2065
+ * Released under the MIT license
2066
+ * https://github.com/fians/Waves/blob/master/LICENSE
2067
+ */
2068
+ .waves-effect {
2069
+ position: relative;
2070
+ cursor: pointer;
2071
+ display: inline-block;
2072
+ overflow: hidden;
2073
+ -webkit-user-select: none;
2074
+ -moz-user-select: none;
2075
+ -ms-user-select: none;
2076
+ user-select: none;
2077
+ -webkit-tap-highlight-color: transparent;
2078
+ vertical-align: middle;
2079
+ z-index: 1;
2080
+ will-change: opacity, transform;
2081
+ -webkit-transition: all 0.3s ease-out;
2082
+ -moz-transition: all 0.3s ease-out;
2083
+ -o-transition: all 0.3s ease-out;
2084
+ -ms-transition: all 0.3s ease-out;
2085
+ transition: all 0.3s ease-out;
2086
+ }
2087
+ .waves-effect .waves-ripple {
2088
+ position: absolute;
2089
+ border-radius: 50%;
2090
+ width: 20px;
2091
+ height: 20px;
2092
+ margin-top: -10px;
2093
+ margin-left: -10px;
2094
+ opacity: 0;
2095
+ background: rgba(0, 0, 0, 0.2);
2096
+ -webkit-transition: all 0.7s ease-out;
2097
+ -moz-transition: all 0.7s ease-out;
2098
+ -o-transition: all 0.7s ease-out;
2099
+ -ms-transition: all 0.7s ease-out;
2100
+ transition: all 0.7s ease-out;
2101
+ -webkit-transition-property: -webkit-transform, opacity;
2102
+ -moz-transition-property: -moz-transform, opacity;
2103
+ -o-transition-property: -o-transform, opacity;
2104
+ transition-property: transform, opacity;
2105
+ -webkit-transform: scale(0);
2106
+ -moz-transform: scale(0);
2107
+ -ms-transform: scale(0);
2108
+ -o-transform: scale(0);
2109
+ transform: scale(0);
2110
+ pointer-events: none;
2111
+ }
2112
+ .waves-effect.waves-light .waves-ripple {
2113
+ background-color: rgba(255, 255, 255, 0.45);
2114
+ }
2115
+ .waves-effect.waves-red .waves-ripple {
2116
+ background-color: rgba(244, 67, 54, 0.7);
2117
+ }
2118
+ .waves-effect.waves-yellow .waves-ripple {
2119
+ background-color: rgba(255, 235, 59, 0.7);
2120
+ }
2121
+ .waves-effect.waves-orange .waves-ripple {
2122
+ background-color: rgba(255, 152, 0, 0.7);
2123
+ }
2124
+ .waves-effect.waves-purple .waves-ripple {
2125
+ background-color: rgba(156, 39, 176, 0.7);
2126
+ }
2127
+ .waves-effect.waves-green .waves-ripple {
2128
+ background-color: rgba(76, 175, 80, 0.7);
2129
+ }
2130
+ .waves-effect.waves-teal .waves-ripple {
2131
+ background-color: rgba(0, 150, 136, 0.7);
2132
+ }
2133
+ .waves-notransition {
2134
+ -webkit-transition: none !important;
2135
+ -moz-transition: none !important;
2136
+ -o-transition: none !important;
2137
+ -ms-transition: none !important;
2138
+ transition: none !important;
2139
+ }
2140
+ .waves-circle {
2141
+ -webkit-transform: translateZ(0);
2142
+ -moz-transform: translateZ(0);
2143
+ -ms-transform: translateZ(0);
2144
+ -o-transform: translateZ(0);
2145
+ transform: translateZ(0);
2146
+ text-align: center;
2147
+ width: 2.5em;
2148
+ height: 2.5em;
2149
+ line-height: 2.5em;
2150
+ border-radius: 50%;
2151
+ -webkit-mask-image: none;
2152
+ }
2153
+ .waves-input-wrapper {
2154
+ border-radius: 0.2em;
2155
+ vertical-align: bottom;
2156
+ }
2157
+ .waves-input-wrapper .waves-button-input {
2158
+ position: relative;
2159
+ top: 0;
2160
+ left: 0;
2161
+ z-index: 1;
2162
+ }
2163
+ .waves-block {
2164
+ display: block;
2165
+ }
2166
+ /* =============
2167
+ Print css
2168
+ ============= */
2169
+ @media print {
2170
+ .logo,
2171
+ .breadcrumb,
2172
+ .page-title,
2173
+ .footer {
2174
+ display: none;
2175
+ margin: 0px;
2176
+ padding: 0px;
2177
+ }
2178
+ .left,
2179
+ .right-bar {
2180
+ display: none;
2181
+ }
2182
+ .content {
2183
+ margin-top: 0px;
2184
+ padding-top: 0px;
2185
+ }
2186
+ .content-page {
2187
+ margin-left: 0px;
2188
+ margin-top: 0px;
2189
+ }
2190
+ }