localtower 1.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (227) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +133 -33
  3. data/app/assets/javascripts/localtower/application.js +30830 -0
  4. data/app/assets/javascripts/localtower/application.js.map +7 -0
  5. data/app/assets/stylesheets/localtower/application.css +1179 -0
  6. data/app/assets/stylesheets/src/application.css +68 -0
  7. data/app/controllers/localtower/pages_controller.rb +20 -35
  8. data/app/javascript/application.js +46 -0
  9. data/app/javascript/components/DarkSelect.js +115 -0
  10. data/app/javascript/components/ModernTooltip.js +26 -0
  11. data/app/javascript/components/NewMigrationForm.js +687 -0
  12. data/app/javascript/components/NewModelForm.js +432 -0
  13. data/app/javascript/components/data/Stores.js +294 -0
  14. data/app/views/layouts/localtower/application.html.erb +80 -66
  15. data/app/views/localtower/_migration.html.erb +30 -0
  16. data/app/views/localtower/pages/_alert_no_models.html.erb +1 -1
  17. data/app/views/localtower/pages/migrations.html.erb +24 -55
  18. data/app/views/localtower/pages/new_migration.html.erb +33 -96
  19. data/app/views/localtower/pages/new_model.html.erb +17 -83
  20. data/config/routes.rb +1 -1
  21. data/lib/localtower/engine.rb +9 -2
  22. data/lib/localtower/generators/migration.rb +218 -91
  23. data/lib/localtower/generators/model.rb +29 -20
  24. data/lib/localtower/generators/service_objects/insert_array.rb +5 -3
  25. data/lib/localtower/generators/service_objects/insert_defaults.rb +73 -3
  26. data/lib/localtower/generators/service_objects/insert_foreign_keys.rb +35 -0
  27. data/lib/localtower/generators/service_objects/insert_indexes.rb +41 -18
  28. data/lib/localtower/generators/service_objects/insert_nullable.rb +5 -3
  29. data/lib/localtower/status.rb +3 -1
  30. data/lib/localtower/tools.rb +20 -9
  31. data/lib/localtower/version.rb +1 -1
  32. data/lib/localtower.rb +0 -6
  33. data/public/com/favicon-64.png +0 -0
  34. data/public/com/twitter-cover-1.png +0 -0
  35. data/public/com/twitter-cover-2.png +0 -0
  36. data/public/fonts/Circular/CircularStd-Black.otf +0 -0
  37. data/public/fonts/Circular/CircularStd-BlackItalic.otf +0 -0
  38. data/public/fonts/Circular/CircularStd-Bold.otf +0 -0
  39. data/public/fonts/Circular/CircularStd-BoldItalic.otf +0 -0
  40. data/public/fonts/Circular/CircularStd-Book.otf +0 -0
  41. data/public/fonts/Circular/CircularStd-BookItalic.otf +0 -0
  42. data/public/fonts/Circular/CircularStd-Light Italic.otf +0 -0
  43. data/public/fonts/Circular/CircularStd-Light.otf +0 -0
  44. data/public/fonts/Circular/CircularStd-Medium.otf +0 -0
  45. data/public/fonts/Circular/CircularStd-MediumItalic.otf +0 -0
  46. data/public/fonts/Circular/Read Me.txt +5 -0
  47. data/public/fonts/Circular/www.dfonts.org.url +2 -0
  48. data/public/screenshots/v0.1.1/1_schema.png +0 -0
  49. data/public/screenshots/v0.1.1/2_models_1.png +0 -0
  50. data/public/screenshots/v0.1.1/2_models_2.png +0 -0
  51. data/public/screenshots/v0.1.1/3_relations.png +0 -0
  52. data/public/screenshots/v0.1.1/4_migrations.png +0 -0
  53. data/public/screenshots/v0.1.6/1_schema.png +0 -0
  54. data/public/screenshots/v0.1.6/2_models_1.png +0 -0
  55. data/public/screenshots/v0.1.6/3_relations.png +0 -0
  56. data/public/screenshots/v0.1.6/4_migrations.png +0 -0
  57. data/public/screenshots/v0.1.6/5_capture.png +0 -0
  58. data/public/screenshots/v1.0.0/migrations.png +0 -0
  59. data/public/screenshots/v1.0.0/models.png +0 -0
  60. data/public/screenshots/v1.0.0/new_migration.png +0 -0
  61. data/public/screenshots/v1.0.0/new_model.png +0 -0
  62. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.44.30.jpg +0 -0
  63. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.44.42.jpg +0 -0
  64. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.44.54.jpg +0 -0
  65. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.48.21.jpg +0 -0
  66. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.48.28.jpg +0 -0
  67. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.48.51.jpg +0 -0
  68. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.49.09.jpg +0 -0
  69. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.50.04.jpg +0 -0
  70. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.50.11.jpg +0 -0
  71. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.50.19.jpg +0 -0
  72. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.51.47.jpg +0 -0
  73. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.51.48.jpg +0 -0
  74. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.52.02.jpg +0 -0
  75. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.52.18.jpg +0 -0
  76. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.52.26.jpg +0 -0
  77. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.52.38.jpg +0 -0
  78. data/public/screenshots/v2.0.0/migrations.png +0 -0
  79. data/public/screenshots/v2.0.0/new_migration.png +0 -0
  80. data/public/screenshots/v2.0.0/new_model.png +0 -0
  81. data/public/vendor/jquery-3.7.1.min.js +2 -0
  82. data/public/vendor/lucide.min.js +12 -0
  83. data/public/vendor/monokai-sublime.css +80 -0
  84. data/public/vendor/rails-ujs.min.js +8 -0
  85. data/spec/dummy/Gemfile +1 -1
  86. data/spec/dummy/Gemfile.lock +146 -104
  87. data/spec/dummy/config/database.yml +4 -6
  88. data/spec/dummy/config/puma.rb +1 -1
  89. data/spec/dummy/db/schema.rb +2 -39
  90. data/spec/dummy/lib/tasks/reset.rake +16 -0
  91. data/spec/dummy/log/development.log +22746 -15994
  92. data/spec/dummy/log/localtower.log +747 -1891
  93. data/spec/dummy/log/test.log +1145 -0
  94. data/spec/dummy/tmp/cache/sessions/localtower/726/FE1/_session_id%3A2%3A%3A69d6764784f832ea25700ea2f242210f3f8d94b48912b0f09ffc44311f0376eb +0 -0
  95. data/spec/dummy/tmp/cache/sessions/localtower/77E/121/_session_id%3A2%3A%3A0b3c1fe7154461ba023ba6c81dd1b999348757880b505f4b082faed263a627f9 +1 -0
  96. data/spec/dummy/tmp/cache/sessions/localtower/7EB/8A1/_session_id%3A2%3A%3Af88237c1d157546a5dcde894fd6c1410162a8eba318748d4ac573ee75e40df16 +0 -0
  97. data/spec/dummy/tmp/local_secret.txt +1 -0
  98. data/spec/factories/migration.rb +77 -40
  99. data/spec/factories/model.rb +46 -26
  100. data/spec/lib/localtower/generators/migration_spec.rb +16 -24
  101. data/spec/lib/localtower/generators/model_spec.rb +71 -8
  102. data/spec/lib/localtower/generators/service_objects/insert_array_spec.rb +1 -1
  103. data/spec/lib/localtower/generators/service_objects/insert_defaults_spec.rb +1 -1
  104. data/spec/lib/localtower/generators/service_objects/insert_foreign_keys_spec.rb +101 -0
  105. data/spec/lib/localtower/generators/service_objects/insert_indexes_spec.rb +1 -1
  106. data/spec/lib/localtower/generators/service_objects/insert_nullable_spec.rb +2 -2
  107. data/spec/spec_helper.rb +2 -3
  108. metadata +107 -238
  109. data/app/views/localtower/pages/models.html.erb +0 -63
  110. data/public/css/app.css +0 -55
  111. data/public/js/app.js +0 -337
  112. data/public/light-bootstrap-dashboard-master/assets/css/animate.min.css +0 -6
  113. data/public/light-bootstrap-dashboard-master/assets/css/bootstrap.min.css +0 -5
  114. data/public/light-bootstrap-dashboard-master/assets/css/demo.css +0 -61
  115. data/public/light-bootstrap-dashboard-master/assets/css/light-bootstrap-dashboard.css +0 -2789
  116. data/public/light-bootstrap-dashboard-master/assets/css/pe-icon-7-stroke.css +0 -632
  117. data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.eot +0 -0
  118. data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.svg +0 -212
  119. data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.ttf +0 -0
  120. data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.woff +0 -0
  121. data/public/light-bootstrap-dashboard-master/assets/img/default-avatar.png +0 -0
  122. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-0.jpg +0 -0
  123. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-1.jpg +0 -0
  124. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-2.jpg +0 -0
  125. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-3.jpg +0 -0
  126. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-4.jpg +0 -0
  127. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-5.jpg +0 -0
  128. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-6.jpg +0 -0
  129. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-7.jpg +0 -0
  130. data/public/light-bootstrap-dashboard-master/assets/img/faces/tim_vector.jpe +0 -0
  131. data/public/light-bootstrap-dashboard-master/assets/img/favicon.ico +0 -0
  132. data/public/light-bootstrap-dashboard-master/assets/img/loading-bubbles.svg +0 -14
  133. data/public/light-bootstrap-dashboard-master/assets/img/mask.png +0 -0
  134. data/public/light-bootstrap-dashboard-master/assets/img/new_logo.png +0 -0
  135. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-1.jpg +0 -0
  136. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-2.jpg +0 -0
  137. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-3.jpg +0 -0
  138. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-4.jpg +0 -0
  139. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-5.jpg +0 -0
  140. data/public/light-bootstrap-dashboard-master/assets/img/tim_80x80.png +0 -0
  141. data/public/light-bootstrap-dashboard-master/assets/js/bootstrap-checkbox-radio-switch.js +0 -502
  142. data/public/light-bootstrap-dashboard-master/assets/js/bootstrap-notify.js +0 -404
  143. data/public/light-bootstrap-dashboard-master/assets/js/bootstrap-select.js +0 -438
  144. data/public/light-bootstrap-dashboard-master/assets/js/bootstrap.min.js +0 -7
  145. data/public/light-bootstrap-dashboard-master/assets/js/chartist.min.js +0 -9
  146. data/public/light-bootstrap-dashboard-master/assets/js/demo.js +0 -152
  147. data/public/light-bootstrap-dashboard-master/assets/js/jquery-1.10.2.js +0 -9789
  148. data/public/light-bootstrap-dashboard-master/assets/js/light-bootstrap-dashboard.js +0 -179
  149. data/public/logo-localtower-white-300.png +0 -0
  150. data/public/logo-localtower-white.png +0 -0
  151. data/public/logo-localtower.png +0 -0
  152. data/public/vendor/font-awesome.min.css +0 -4
  153. data/public/vendor/highlight-js-default.min.css +0 -9
  154. data/spec/dummy/app/models/post.rb +0 -3
  155. data/spec/dummy/app/models/user.rb +0 -3
  156. data/spec/dummy/db/migrate/20230119221452_create_users.rb +0 -14
  157. data/spec/dummy/db/migrate/20230119221751_change_users_at1674166670.rb +0 -7
  158. data/spec/dummy/db/migrate/20230119222054_create_posts.rb +0 -11
  159. data/spec/dummy/db/migrate/20230119222106_change_posts_at1674166865.rb +0 -5
  160. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/-Y/-YOiiBKqc2UODHFjctm8xc7xFoZaL7zOjWQj6qQ2wyE.cache +0 -1
  161. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/-d/-dwueM4vmPt8L51S3jeSyg_AjGDcj0GUN6pDpCA1gCg.cache +0 -3
  162. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/0g/0gaJnJQdtd2ACbihXxn8OnjLWlDjnQ_WxfgOpbiLzhg.cache +0 -1
  163. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/0r/0rFCsCV9kZnEYtZZ6sfig8329OU31bqjecDFqSVank8.cache +0 -1
  164. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/1J/1J2k_CpnQE3d-PZAQwOVGQALGkta4qVvhdsKjgG0e4Q.cache +0 -0
  165. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/2p/2pYVH2Z_syqh6ok8QYxJNKxXpx1Iwppf6JGElZI0gpw.cache +0 -0
  166. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/3W/3WBmqd-2V6q5N-jvbyp-tlcfn3aHYMwBppbOUm7x4qg.cache +0 -1
  167. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/4K/4KFPlHkhdDW0riGUmlbaR-kmDz6JUnQvY6fwW8qsdaE.cache +0 -3
  168. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/6x/6xMeRWmLpNK_flx6-JA3KazvUxSCxyPxHv9Zm3eC26Q.cache +0 -1
  169. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/7d/7dNqI_dCDJLJmI1oM4xwFp9nRRNOem-4P4OD7PMyz2E.cache +0 -0
  170. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/8X/8XquhxVcp5A8QquLtxO8NgKTMJch0eqQmzFmRGIZP6I.cache +0 -1
  171. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Ah/AhdfXXtU63kXS4TnsH2Vi1yWgVkIEeV8Z8XA68hrNQc.cache +0 -0
  172. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Bt/BtAePnwLSGw82xUGI7wuhWDfuwarOQVS91YqCsweMcs.cache +0 -0
  173. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Bx/BxzoG0KxeNLac4xTNeJv3qfeytbNBw58xj2zD-xdbrE.cache +0 -2
  174. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/CC/CCD0ROPX0yxHwNpVZmuP8ZNtgQpaVCMXpdzC0Wb5n24.cache +0 -1
  175. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/DS/DS43oxBg6K5PMWLn2mTy_4EnxI03ehHkxpjV7NCi8yM.cache +0 -1
  176. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Do/Do83AoOat5W-c1g7piDGy2GMmffsY6JY0Qfuh5PY3GM.cache +0 -2
  177. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/EI/EI0Nxk-VRATWstMuVCVc0_GdYlQ-a0dx6n2g0l3vIik.cache +0 -0
  178. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/EN/ENhJnzJAU2IK-7aHqubj9N8Jo_UTmjG_VEQqyIkolQ8.cache +0 -1
  179. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Fc/FcS6VUHN3Bd4pHGqd5NHA8jA4OLwWrU94s3b4GGxX9c.cache +0 -1
  180. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/G0/G0kukI-r0q0Vbrg6e_jnYJoYcOX8K__h-mwKbCf4twE.cache +0 -0
  181. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/I1/I1Jw08-mz8xzgrgi6giCzpf1UmzGTSbl4eJEw4DAoJM.cache +0 -1
  182. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/IV/IVOO1dXBmgjieDk__g57p6aYt0Z3CmfTa32jhegoyko.cache +0 -3
  183. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/JY/JYPmv5WP4wxdI9EKEEPkK_fVtqeSLfmint_5E8fQLQ8.cache +0 -1
  184. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/MX/MXI3KxaQPZGImSvCNZ_TbQVruWCJ3E0xiVxza1ZCAjM.cache +0 -1
  185. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/OU/OUoioCqXALK909jXPV3VSyCJIdNC7bsogUfdnRTpc5o.cache +0 -1
  186. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/PH/PHjtqNLUPAUDiSlu5AbPjlIo20mOGNm0uNjMLhX2NvM.cache +0 -0
  187. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/RC/RC9vfALY5K634pTeau0BAhTHl7d5_5yA3tM-QTLiKtI.cache +0 -0
  188. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/RG/RG1PrmlixwaUlG8BV0kcm_3F7OQekxsrLYjBdf403-k.cache +0 -2
  189. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Ut/UtoMO6n6FHTpRCGk9VfxlfTI2Ao2GYJ_6kMzx3B9VH8.cache +0 -1
  190. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/VE/VExnbpDk3LxYdPk3htUrZQXPI8NK_zlKtSFfVXJlxU4.cache +0 -1
  191. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Wm/WmKTjykiU-Tx_Faf5zduEeEQ-DozAs5omKToM2l1cZM.cache +0 -0
  192. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/X-/X-KjhDPd0nI155N_FaxFSgaOiYo0_ytqlmkBlLM7ayw.cache +0 -1
  193. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/XX/XXVhj-O91tJ5c8pz7DQlTABOv8TIRVg5haw9VOq9HuI.cache +0 -1
  194. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/YC/YCiifo5NCMwDChFqYFiV4EaYEx8hy3Efle1PsGbIdak.cache +0 -1
  195. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Ya/YayMISAqD-Y3vBFywwKrXbUovGf5o77HUF5s8mnQgO0.cache +0 -0
  196. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Zl/Zl-NEb0aDLmZ9gN4gdY1OYlbUXD4JhkFY_y23m55zmo.cache +0 -0
  197. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/_h/_hnjPptBeD3GP5B0iJR6pvyVkiMiq-o2TxaYmGf9KJo.cache +0 -3
  198. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/_p/_poEF6QbTPYJiQCFGoXxIXjmvcn6T0I87ElzJGHguk0.cache +0 -1
  199. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/aa/aaSj2zt8ddc87nZqTpOI9gRCKVnoalXKFBww7t4t3Kg.cache +0 -0
  200. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/bZ/bZHWUkrOLp0WM_Ogo36Qjt4cxDt-rOFgtcj4LNB-BVE.cache +0 -1
  201. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/cP/cPSNG_663TNT944Rke919luRS6FtpMwVc_7aDph645w.cache +0 -1
  202. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/ce/ceq8fcZGIoqWrCl9vrCRrywEdx42iy9PrGG9CwFSIF4.cache +0 -0
  203. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/cl/cljhP0Jc018nLnG1rpdg-FUf6mlIqrQYvXTNXTNG9Bw.cache +0 -0
  204. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/dm/dmod3fTZdoKso2FGM5RTQtb4kTB6vywsiXLWDygYFN4.cache +0 -1
  205. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/dy/dySDGcUTqlKx2MTvOmIEP-WzhyhCfU5xhN9qgxbz3rI.cache +0 -0
  206. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/gQ/gQYdmEzbLjTcFCnsfzXzEmeminOchF263snAk3IvXM0.cache +0 -1
  207. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/gh/ghvuMAqccBGljlmEaI3Gt5tH5rEg6hseKYMYfRMkHdY.cache +0 -1
  208. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/gt/gt8QC7k92A4hXA3HlCpQulW73tqd6x63I3uT-YrGMj0.cache +0 -1
  209. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/hf/hfVg-y7dPSQKbb7V3I7M5w7IpOhDiIB2H31d2tmbZMU.cache +0 -0
  210. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/iF/iFLwyhZIu1Jxm77NUT2qWeTDMmyELW4U85t9rGE_KVg.cache +0 -0
  211. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/kF/kFlIcBBnSyKE00OjpM90pqSn93mLMUv9esz86nrO-Cs.cache +0 -1
  212. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/ma/MazNt_5OaYexRuZnccZZ_7AONlxn1a4W3KdWyHyBdws.cache +0 -0
  213. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/ma/ma3w08gnDTeqwY2-C9BlToxA6-AS8bvXlu-nBiz0UYs.cache +0 -1
  214. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +0 -2
  215. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +0 -2
  216. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/pv/pv6tV3CDkIAmLXdU8EPLlNEkXAKJPufVD4VP30o4fWo.cache +0 -0
  217. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/qP/qPmv5snMrDw830S6hSICDcnIy7kVEWoFKXhGKT38lG4.cache +0 -2
  218. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/sY/sYvTb1uPWWmnHJNXKuW_xSco-aUb-rN2f0J35zSIzuc.cache +0 -1
  219. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/su/suQ_jjDxRiIn4VEqFJYKaBWJILaeGKBvoTv49XNX0vo.cache +0 -1
  220. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/u8/u8IrW5IIQ7espwk2Vpk23zheL9YZA0tnbKq9X7E-WA0.cache +0 -1
  221. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/wh/whzETExjcZCkn4msasD2aylgfhfpKPZrNxTkY-SOIDg.cache +0 -2
  222. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/x7/x7PYh8DJvPykcEqpVab2vcY9-GFz-3cqtoMlRAu94Uc.cache +0 -2
  223. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/y6/y6oxsJD3pAY9ph1_5M-77uiEjTVw8BheLZNygCKPm1g.cache +0 -1
  224. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/yH/yHZ-a1J23ZCf2n5mEHINMz23Iec2cLGTKauW7k4yGTE.cache +0 -0
  225. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/z7/z7KfUWYoSaGq8tQ5mbHwyfXyT3Pa4FWKJswHcIdJuds.cache +0 -1
  226. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/zu/zuExWc5WHxeOUPZUKHl9a9ZRmN50g7jMOD28macn6M0.cache +0 -0
  227. data/spec/dummy/tmp/pids/server.pid +0 -1
@@ -1,2789 +0,0 @@
1
- /*!
2
-
3
- =========================================================
4
- * Light Bootstrap Dashboard - v1.3.1.0
5
- =========================================================
6
-
7
- * Product Page: http://www.creative-tim.com/product/light-bootstrap-dashboard
8
- * Copyright 2017 Creative Tim (http://www.creative-tim.com)
9
- * Licensed under MIT (https://github.com/creativetimofficial/light-bootstrap-dashboard/blob/master/LICENSE.md)
10
-
11
- =========================================================
12
-
13
- * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
14
-
15
- */
16
- /* light colors */
17
- @keyframes spin {
18
- from {
19
- transform: rotate(0deg); }
20
- to {
21
- transform: rotate(360deg); } }
22
- @-webkit-keyframes spin {
23
- from {
24
- -webkit-transform: rotate(0deg); }
25
- to {
26
- -webkit-transform: rotate(360deg); } }
27
- @-moz-keyframes spin {
28
- from {
29
- -moz-transform: rotate(0deg); }
30
- to {
31
- -moz-transform: rotate(360deg); } }
32
- @-ms-keyframes spin {
33
- from {
34
- -ms-transform: rotate(0deg); }
35
- to {
36
- -ms-transform: rotate(360deg); } }
37
- /* Font Smoothing */
38
- body,
39
- h1, .h1,
40
- h2, .h2,
41
- h3, .h3,
42
- h4, .h4,
43
- h5, .h5,
44
- h6, .h6,
45
- p,
46
- .navbar,
47
- .brand,
48
- .btn-simple,
49
- .alert,
50
- a,
51
- .td-name,
52
- td,
53
- button.close {
54
- -moz-osx-font-smoothing: grayscale;
55
- -webkit-font-smoothing: antialiased;
56
- font-family: "Roboto","Helvetica Neue",Arial,sans-serif;
57
- font-weight: 400; }
58
-
59
- h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
60
- font-weight: 300;
61
- margin: 30px 0 15px; }
62
-
63
- h1, .h1 {
64
- font-size: 52px; }
65
-
66
- h2, .h2 {
67
- font-size: 36px; }
68
-
69
- h3, .h3 {
70
- font-size: 28px;
71
- margin: 20px 0 10px; }
72
-
73
- h4, .h4 {
74
- font-size: 22px;
75
- line-height: 30px; }
76
-
77
- h5, .h5 {
78
- font-size: 16px;
79
- margin-bottom: 15px; }
80
-
81
- h6, .h6 {
82
- font-size: 14px;
83
- font-weight: 600;
84
- text-transform: uppercase; }
85
-
86
- p {
87
- font-size: 16px;
88
- line-height: 1.5; }
89
-
90
- h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
91
- color: #9A9A9A;
92
- font-weight: 300;
93
- line-height: 1.5; }
94
-
95
- h1 small, h2 small, h3 small, h1 .small, h2 .small, h3 .small {
96
- font-size: 60%; }
97
-
98
- h1 .subtitle {
99
- display: block;
100
- margin: 0 0 30px; }
101
-
102
- .text-muted {
103
- color: #9A9A9A; }
104
-
105
- .text-primary, .text-primary:hover {
106
- color: #1D62F0 !important; }
107
-
108
- .text-info, .text-info:hover {
109
- color: #1DC7EA !important; }
110
-
111
- .text-success, .text-success:hover {
112
- color: #87CB16 !important; }
113
-
114
- .text-warning, .text-warning:hover {
115
- color: #FF9500 !important; }
116
-
117
- .text-danger, .text-danger:hover {
118
- color: #FF4A55 !important; }
119
-
120
- /* General overwrite */
121
- body,
122
- .wrapper {
123
- min-height: 100vh;
124
- position: relative; }
125
-
126
- a {
127
- color: #1DC7EA; }
128
- a:hover, a:focus {
129
- color: #42d0ed;
130
- text-decoration: none; }
131
-
132
- a:focus, a:active,
133
- button::-moz-focus-inner,
134
- input::-moz-focus-inner,
135
- input[type="reset"]::-moz-focus-inner,
136
- input[type="button"]::-moz-focus-inner,
137
- input[type="submit"]::-moz-focus-inner,
138
- select::-moz-focus-inner,
139
- input[type="file"] > input[type="button"]::-moz-focus-inner {
140
- outline: 0; }
141
-
142
- .ui-slider-handle:focus,
143
- .navbar-toggle,
144
- input:focus {
145
- outline: 0 !important; }
146
-
147
- .fa {
148
- width: 18px;
149
- text-align: center; }
150
-
151
- .margin-top {
152
- margin-top: 50px; }
153
-
154
- .wrapper {
155
- position: relative;
156
- top: 0;
157
- height: 100vh; }
158
-
159
- .sidebar,
160
- body > .navbar-collapse {
161
- position: absolute;
162
- top: 0;
163
- bottom: 0;
164
- left: 0;
165
- width: 260px;
166
- display: block;
167
- z-index: 1;
168
- color: #fff;
169
- font-weight: 200;
170
- background-size: cover;
171
- background-position: center center; }
172
- .sidebar .sidebar-wrapper,
173
- body > .navbar-collapse .sidebar-wrapper {
174
- position: relative;
175
- max-height: calc(100vh - 75px);
176
- min-height: 100%;
177
- overflow: auto;
178
- width: 260px;
179
- z-index: 4;
180
- padding-bottom: 100px; }
181
- .sidebar .sidebar-background,
182
- body > .navbar-collapse .sidebar-background {
183
- position: absolute;
184
- z-index: 1;
185
- height: 100%;
186
- width: 100%;
187
- display: block;
188
- top: 0;
189
- left: 0;
190
- background-size: cover;
191
- background-position: center center; }
192
- .sidebar .logo,
193
- body > .navbar-collapse .logo {
194
- padding: 10px 15px;
195
- border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
196
- .sidebar .logo p,
197
- body > .navbar-collapse .logo p {
198
- float: left;
199
- font-size: 20px;
200
- margin: 10px 10px;
201
- color: #FFFFFF;
202
- line-height: 20px;
203
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
204
- .sidebar .logo .simple-text,
205
- body > .navbar-collapse .logo .simple-text {
206
- text-transform: uppercase;
207
- padding: 5px 0px;
208
- display: block;
209
- font-size: 18px;
210
- color: #FFFFFF;
211
- text-align: center;
212
- font-weight: 400;
213
- line-height: 30px; }
214
- .sidebar .logo-tim,
215
- body > .navbar-collapse .logo-tim {
216
- border-radius: 50%;
217
- border: 1px solid #333;
218
- display: block;
219
- height: 61px;
220
- width: 61px;
221
- float: left;
222
- overflow: hidden; }
223
- .sidebar .logo-tim img,
224
- body > .navbar-collapse .logo-tim img {
225
- width: 60px;
226
- height: 60px; }
227
- .sidebar .nav,
228
- body > .navbar-collapse .nav {
229
- margin-top: 20px;
230
- float: none; }
231
- .sidebar .nav li > a,
232
- body > .navbar-collapse .nav li > a {
233
- color: #FFFFFF;
234
- margin: 5px 15px;
235
- opacity: .86;
236
- border-radius: 4px;
237
- display: block; }
238
- .sidebar .nav li:hover > a,
239
- body > .navbar-collapse .nav li:hover > a {
240
- background: rgba(255, 255, 255, 0.13);
241
- opacity: 1; }
242
- .sidebar .nav li.active > a,
243
- body > .navbar-collapse .nav li.active > a {
244
- color: #FFFFFF;
245
- opacity: 1;
246
- background: rgba(255, 255, 255, 0.23); }
247
- .sidebar .nav li.separator,
248
- body > .navbar-collapse .nav li.separator {
249
- margin: 15px 0;
250
- border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
251
- .sidebar .nav li.separator + li,
252
- body > .navbar-collapse .nav li.separator + li {
253
- margin-top: 31px; }
254
- .sidebar .nav p,
255
- body > .navbar-collapse .nav p {
256
- margin: 0;
257
- line-height: 30px;
258
- font-size: 12px;
259
- font-weight: 600;
260
- text-transform: uppercase;
261
- margin-left: 45px; }
262
- .sidebar .nav i,
263
- body > .navbar-collapse .nav i {
264
- font-size: 28px;
265
- float: left;
266
- margin-right: 15px;
267
- line-height: 30px;
268
- width: 30px;
269
- text-align: center; }
270
- .sidebar .nav .caret,
271
- body > .navbar-collapse .nav .caret {
272
- margin-top: 13px;
273
- position: absolute;
274
- right: 30px; }
275
- .sidebar .logo,
276
- body > .navbar-collapse .logo {
277
- padding: 10px 15px;
278
- border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
279
- .sidebar .logo p,
280
- body > .navbar-collapse .logo p {
281
- float: left;
282
- font-size: 20px;
283
- margin: 10px 10px;
284
- color: #FFFFFF;
285
- line-height: 20px;
286
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
287
- .sidebar .logo .simple-text,
288
- body > .navbar-collapse .logo .simple-text {
289
- text-transform: uppercase;
290
- padding: 5px 0px;
291
- display: block;
292
- font-size: 18px;
293
- color: #FFFFFF;
294
- text-align: center;
295
- font-weight: 400;
296
- line-height: 30px; }
297
- .sidebar .logo-tim,
298
- body > .navbar-collapse .logo-tim {
299
- border-radius: 50%;
300
- border: 1px solid #333;
301
- display: block;
302
- height: 61px;
303
- width: 61px;
304
- float: left;
305
- overflow: hidden; }
306
- .sidebar .logo-tim img,
307
- body > .navbar-collapse .logo-tim img {
308
- width: 60px;
309
- height: 60px; }
310
- .sidebar:after, .sidebar:before,
311
- body > .navbar-collapse:after,
312
- body > .navbar-collapse:before {
313
- display: block;
314
- content: "";
315
- position: absolute;
316
- width: 100%;
317
- height: 100%;
318
- top: 0;
319
- left: 0;
320
- z-index: 2; }
321
- .sidebar:before,
322
- body > .navbar-collapse:before {
323
- opacity: .33;
324
- background: #000000; }
325
- .sidebar:after,
326
- body > .navbar-collapse:after {
327
- background: #787878;
328
- background: -moz-linear-gradient(top, #787878 0%, #343434 100%);
329
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #787878), color-stop(100%, #343434));
330
- background: -webkit-linear-gradient(top, #787878 0%, #343434 100%);
331
- background: -o-linear-gradient(top, #787878 0%, #343434 100%);
332
- background: -ms-linear-gradient(top, #787878 0%, #343434 100%);
333
- background: linear-gradient(to bottom, #787878 0%, #343434 100%);
334
- background-size: 150% 150%;
335
- z-index: 3;
336
- opacity: 1; }
337
- .sidebar[data-image]:after, .sidebar.has-image:after,
338
- body > .navbar-collapse[data-image]:after,
339
- body > .navbar-collapse.has-image:after {
340
- opacity: .77; }
341
- .sidebar[data-color="blue"]:after,
342
- body > .navbar-collapse[data-color="blue"]:after {
343
- background: #1F77D0;
344
- background: -moz-linear-gradient(top, #1F77D0 0%, #533ce1 100%);
345
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1F77D0), color-stop(100%, #533ce1));
346
- background: -webkit-linear-gradient(top, #1F77D0 0%, #533ce1 100%);
347
- background: -o-linear-gradient(top, #1F77D0 0%, #533ce1 100%);
348
- background: -ms-linear-gradient(top, #1F77D0 0%, #533ce1 100%);
349
- background: linear-gradient(to bottom, #1F77D0 0%, #533ce1 100%);
350
- background-size: 150% 150%; }
351
- .sidebar[data-color="azure"]:after,
352
- body > .navbar-collapse[data-color="azure"]:after {
353
- background: #1DC7EA;
354
- background: -moz-linear-gradient(top, #1DC7EA 0%, #4091ff 100%);
355
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1DC7EA), color-stop(100%, #4091ff));
356
- background: -webkit-linear-gradient(top, #1DC7EA 0%, #4091ff 100%);
357
- background: -o-linear-gradient(top, #1DC7EA 0%, #4091ff 100%);
358
- background: -ms-linear-gradient(top, #1DC7EA 0%, #4091ff 100%);
359
- background: linear-gradient(to bottom, #1DC7EA 0%, #4091ff 100%);
360
- background-size: 150% 150%; }
361
- .sidebar[data-color="green"]:after,
362
- body > .navbar-collapse[data-color="green"]:after {
363
- background: #87CB16;
364
- background: -moz-linear-gradient(top, #87CB16 0%, #6dc030 100%);
365
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #87CB16), color-stop(100%, #6dc030));
366
- background: -webkit-linear-gradient(top, #87CB16 0%, #6dc030 100%);
367
- background: -o-linear-gradient(top, #87CB16 0%, #6dc030 100%);
368
- background: -ms-linear-gradient(top, #87CB16 0%, #6dc030 100%);
369
- background: linear-gradient(to bottom, #87CB16 0%, #6dc030 100%);
370
- background-size: 150% 150%; }
371
- .sidebar[data-color="orange"]:after,
372
- body > .navbar-collapse[data-color="orange"]:after {
373
- background: #FFA534;
374
- background: -moz-linear-gradient(top, #FFA534 0%, #ff5221 100%);
375
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFA534), color-stop(100%, #ff5221));
376
- background: -webkit-linear-gradient(top, #FFA534 0%, #ff5221 100%);
377
- background: -o-linear-gradient(top, #FFA534 0%, #ff5221 100%);
378
- background: -ms-linear-gradient(top, #FFA534 0%, #ff5221 100%);
379
- background: linear-gradient(to bottom, #FFA534 0%, #ff5221 100%);
380
- background-size: 150% 150%; }
381
- .sidebar[data-color="red"]:after,
382
- body > .navbar-collapse[data-color="red"]:after {
383
- background: #FB404B;
384
- background: -moz-linear-gradient(top, #FB404B 0%, #bb0502 100%);
385
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FB404B), color-stop(100%, #bb0502));
386
- background: -webkit-linear-gradient(top, #FB404B 0%, #bb0502 100%);
387
- background: -o-linear-gradient(top, #FB404B 0%, #bb0502 100%);
388
- background: -ms-linear-gradient(top, #FB404B 0%, #bb0502 100%);
389
- background: linear-gradient(to bottom, #FB404B 0%, #bb0502 100%);
390
- background-size: 150% 150%; }
391
- .sidebar[data-color="purple"]:after,
392
- body > .navbar-collapse[data-color="purple"]:after {
393
- background: #9368E9;
394
- background: -moz-linear-gradient(top, #9368E9 0%, #943bea 100%);
395
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9368E9), color-stop(100%, #943bea));
396
- background: -webkit-linear-gradient(top, #9368E9 0%, #943bea 100%);
397
- background: -o-linear-gradient(top, #9368E9 0%, #943bea 100%);
398
- background: -ms-linear-gradient(top, #9368E9 0%, #943bea 100%);
399
- background: linear-gradient(to bottom, #9368E9 0%, #943bea 100%);
400
- background-size: 150% 150%; }
401
-
402
- .main-panel {
403
- background: rgba(203, 203, 210, 0.15);
404
- position: relative;
405
- z-index: 2;
406
- float: right;
407
- width: calc(100% - 260px);
408
- min-height: 100%; }
409
- .main-panel > .content {
410
- padding: 30px 15px;
411
- min-height: calc(100% - 123px); }
412
- .main-panel > .footer {
413
- border-top: 1px solid #e7e7e7; }
414
- .main-panel .navbar {
415
- margin-bottom: 0; }
416
-
417
- .sidebar,
418
- .main-panel {
419
- overflow: auto;
420
- max-height: 100%;
421
- height: 100%;
422
- -webkit-transition-property: top,bottom;
423
- transition-property: top,bottom;
424
- -webkit-transition-duration: .0s,.0s;
425
- transition-duration: .0s,.0s;
426
- -webkit-transition-timing-function: linear,linear;
427
- transition-timing-function: linear,linear;
428
- -webkit-overflow-scrolling: touch;
429
- }
430
-
431
- .btn {
432
- border-width: 2px;
433
- background-color: transparent;
434
- font-weight: 400;
435
- opacity: 0.8;
436
- filter: alpha(opacity=80);
437
- padding: 8px 16px;
438
- border-color: #888888;
439
- color: #888888; }
440
- .btn:hover, .btn:focus, .btn:active, .btn.active, .open > .btn.dropdown-toggle {
441
- background-color: transparent;
442
- color: #777777;
443
- border-color: #777777; }
444
- .btn.disabled, .btn.disabled:hover, .btn.disabled:focus, .btn.disabled.focus, .btn.disabled:active, .btn.disabled.active, .btn:disabled, .btn:disabled:hover, .btn:disabled:focus, .btn:disabled.focus, .btn:disabled:active, .btn:disabled.active, .btn[disabled], .btn[disabled]:hover, .btn[disabled]:focus, .btn[disabled].focus, .btn[disabled]:active, .btn[disabled].active, fieldset[disabled] .btn, fieldset[disabled] .btn:hover, fieldset[disabled] .btn:focus, fieldset[disabled] .btn.focus, fieldset[disabled] .btn:active, fieldset[disabled] .btn.active {
445
- background-color: transparent;
446
- border-color: #888888; }
447
- .btn.btn-fill {
448
- color: #FFFFFF;
449
- background-color: #888888;
450
- opacity: 1;
451
- filter: alpha(opacity=100); }
452
- .btn.btn-fill:hover, .btn.btn-fill:focus, .btn.btn-fill:active, .btn.btn-fill.active, .open > .btn.btn-fill.dropdown-toggle {
453
- background-color: #777777;
454
- color: #FFFFFF; }
455
- .btn.btn-fill .caret {
456
- border-top-color: #FFFFFF; }
457
- .btn .caret {
458
- border-top-color: #888888; }
459
- .btn:hover, .btn:focus {
460
- opacity: 1;
461
- filter: alpha(opacity=100);
462
- outline: 0 !important; }
463
- .btn:active, .btn.active, .open > .btn.dropdown-toggle {
464
- -webkit-box-shadow: none;
465
- box-shadow: none;
466
- outline: 0 !important; }
467
- .btn.btn-icon {
468
- padding: 8px; }
469
-
470
- .btn-primary {
471
- border-color: #3472F7;
472
- color: #3472F7; }
473
- .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
474
- background-color: transparent;
475
- color: #1D62F0;
476
- border-color: #1D62F0; }
477
- .btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary:disabled, .btn-primary:disabled:hover, .btn-primary:disabled:focus, .btn-primary:disabled.focus, .btn-primary:disabled:active, .btn-primary:disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
478
- background-color: transparent;
479
- border-color: #3472F7; }
480
- .btn-primary.btn-fill {
481
- color: #FFFFFF;
482
- background-color: #3472F7;
483
- opacity: 1;
484
- filter: alpha(opacity=100); }
485
- .btn-primary.btn-fill:hover, .btn-primary.btn-fill:focus, .btn-primary.btn-fill:active, .btn-primary.btn-fill.active, .open > .btn-primary.btn-fill.dropdown-toggle {
486
- background-color: #1D62F0;
487
- color: #FFFFFF; }
488
- .btn-primary.btn-fill .caret {
489
- border-top-color: #FFFFFF; }
490
- .btn-primary .caret {
491
- border-top-color: #3472F7; }
492
-
493
- .btn-success {
494
- border-color: #87CB16;
495
- color: #87CB16; }
496
- .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
497
- background-color: transparent;
498
- color: #049F0C;
499
- border-color: #049F0C; }
500
- .btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success:disabled, .btn-success:disabled:hover, .btn-success:disabled:focus, .btn-success:disabled.focus, .btn-success:disabled:active, .btn-success:disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
501
- background-color: transparent;
502
- border-color: #87CB16; }
503
- .btn-success.btn-fill {
504
- color: #FFFFFF;
505
- background-color: #87CB16;
506
- opacity: 1;
507
- filter: alpha(opacity=100); }
508
- .btn-success.btn-fill:hover, .btn-success.btn-fill:focus, .btn-success.btn-fill:active, .btn-success.btn-fill.active, .open > .btn-success.btn-fill.dropdown-toggle {
509
- background-color: #049F0C;
510
- color: #FFFFFF; }
511
- .btn-success.btn-fill .caret {
512
- border-top-color: #FFFFFF; }
513
- .btn-success .caret {
514
- border-top-color: #87CB16; }
515
-
516
- .btn-info {
517
- border-color: #1DC7EA;
518
- color: #1DC7EA; }
519
- .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
520
- background-color: transparent;
521
- color: #42d0ed;
522
- border-color: #42d0ed; }
523
- .btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info:disabled, .btn-info:disabled:hover, .btn-info:disabled:focus, .btn-info:disabled.focus, .btn-info:disabled:active, .btn-info:disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
524
- background-color: transparent;
525
- border-color: #1DC7EA; }
526
- .btn-info.btn-fill {
527
- color: #FFFFFF;
528
- background-color: #1DC7EA;
529
- opacity: 1;
530
- filter: alpha(opacity=100); }
531
- .btn-info.btn-fill:hover, .btn-info.btn-fill:focus, .btn-info.btn-fill:active, .btn-info.btn-fill.active, .open > .btn-info.btn-fill.dropdown-toggle {
532
- background-color: #42d0ed;
533
- color: #FFFFFF; }
534
- .btn-info.btn-fill .caret {
535
- border-top-color: #FFFFFF; }
536
- .btn-info .caret {
537
- border-top-color: #1DC7EA; }
538
-
539
- .btn-warning {
540
- border-color: #FF9500;
541
- color: #FF9500; }
542
- .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
543
- background-color: transparent;
544
- color: #ED8D00;
545
- border-color: #ED8D00; }
546
- .btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning:disabled, .btn-warning:disabled:hover, .btn-warning:disabled:focus, .btn-warning:disabled.focus, .btn-warning:disabled:active, .btn-warning:disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
547
- background-color: transparent;
548
- border-color: #FF9500; }
549
- .btn-warning.btn-fill {
550
- color: #FFFFFF;
551
- background-color: #FF9500;
552
- opacity: 1;
553
- filter: alpha(opacity=100); }
554
- .btn-warning.btn-fill:hover, .btn-warning.btn-fill:focus, .btn-warning.btn-fill:active, .btn-warning.btn-fill.active, .open > .btn-warning.btn-fill.dropdown-toggle {
555
- background-color: #ED8D00;
556
- color: #FFFFFF; }
557
- .btn-warning.btn-fill .caret {
558
- border-top-color: #FFFFFF; }
559
- .btn-warning .caret {
560
- border-top-color: #FF9500; }
561
-
562
- .btn-danger {
563
- border-color: #FF4A55;
564
- color: #FF4A55; }
565
- .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
566
- background-color: transparent;
567
- color: #EE2D20;
568
- border-color: #EE2D20; }
569
- .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger:disabled, .btn-danger:disabled:hover, .btn-danger:disabled:focus, .btn-danger:disabled.focus, .btn-danger:disabled:active, .btn-danger:disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
570
- background-color: transparent;
571
- border-color: #FF4A55; }
572
- .btn-danger.btn-fill {
573
- color: #FFFFFF;
574
- background-color: #FF4A55;
575
- opacity: 1;
576
- filter: alpha(opacity=100); }
577
- .btn-danger.btn-fill:hover, .btn-danger.btn-fill:focus, .btn-danger.btn-fill:active, .btn-danger.btn-fill.active, .open > .btn-danger.btn-fill.dropdown-toggle {
578
- background-color: #EE2D20;
579
- color: #FFFFFF; }
580
- .btn-danger.btn-fill .caret {
581
- border-top-color: #FFFFFF; }
582
- .btn-danger .caret {
583
- border-top-color: #FF4A55; }
584
-
585
- .btn-neutral {
586
- border-color: #FFFFFF;
587
- color: #FFFFFF; }
588
- .btn-neutral:hover, .btn-neutral:focus, .btn-neutral:active, .btn-neutral.active, .open > .btn-neutral.dropdown-toggle {
589
- background-color: transparent;
590
- color: #FFFFFF;
591
- border-color: #FFFFFF; }
592
- .btn-neutral.disabled, .btn-neutral.disabled:hover, .btn-neutral.disabled:focus, .btn-neutral.disabled.focus, .btn-neutral.disabled:active, .btn-neutral.disabled.active, .btn-neutral:disabled, .btn-neutral:disabled:hover, .btn-neutral:disabled:focus, .btn-neutral:disabled.focus, .btn-neutral:disabled:active, .btn-neutral:disabled.active, .btn-neutral[disabled], .btn-neutral[disabled]:hover, .btn-neutral[disabled]:focus, .btn-neutral[disabled].focus, .btn-neutral[disabled]:active, .btn-neutral[disabled].active, fieldset[disabled] .btn-neutral, fieldset[disabled] .btn-neutral:hover, fieldset[disabled] .btn-neutral:focus, fieldset[disabled] .btn-neutral.focus, fieldset[disabled] .btn-neutral:active, fieldset[disabled] .btn-neutral.active {
593
- background-color: transparent;
594
- border-color: #FFFFFF; }
595
- .btn-neutral.btn-fill {
596
- color: #FFFFFF;
597
- background-color: #FFFFFF;
598
- opacity: 1;
599
- filter: alpha(opacity=100); }
600
- .btn-neutral.btn-fill:hover, .btn-neutral.btn-fill:focus, .btn-neutral.btn-fill:active, .btn-neutral.btn-fill.active, .open > .btn-neutral.btn-fill.dropdown-toggle {
601
- background-color: #FFFFFF;
602
- color: #FFFFFF; }
603
- .btn-neutral.btn-fill .caret {
604
- border-top-color: #FFFFFF; }
605
- .btn-neutral .caret {
606
- border-top-color: #FFFFFF; }
607
- .btn-neutral:active, .btn-neutral.active, .open > .btn-neutral.dropdown-toggle {
608
- background-color: #FFFFFF;
609
- color: #888888; }
610
- .btn-neutral.btn-fill, .btn-neutral.btn-fill:hover, .btn-neutral.btn-fill:focus {
611
- color: #888888; }
612
- .btn-neutral.btn-simple:active, .btn-neutral.btn-simple.active {
613
- background-color: transparent; }
614
-
615
- .btn:disabled, .btn[disabled], .btn.disabled {
616
- opacity: 0.5;
617
- filter: alpha(opacity=50); }
618
-
619
- .btn-round {
620
- border-width: 1px;
621
- border-radius: 30px !important;
622
- padding: 9px 18px; }
623
- .btn-round.btn-icon {
624
- padding: 9px; }
625
-
626
- .btn-simple {
627
- border: 0;
628
- font-size: 16px;
629
- padding: 8px 16px; }
630
- .btn-simple.btn-icon {
631
- padding: 8px; }
632
-
633
- .btn-lg {
634
- font-size: 18px;
635
- border-radius: 6px;
636
- padding: 14px 30px;
637
- font-weight: 400; }
638
- .btn-lg.btn-round {
639
- padding: 15px 30px; }
640
- .btn-lg.btn-simple {
641
- padding: 16px 30px; }
642
-
643
- .btn-sm {
644
- font-size: 12px;
645
- border-radius: 3px;
646
- padding: 5px 10px; }
647
- .btn-sm.btn-round {
648
- padding: 6px 10px; }
649
- .btn-sm.btn-simple {
650
- padding: 7px 10px; }
651
-
652
- .btn-xs {
653
- font-size: 12px;
654
- border-radius: 3px;
655
- padding: 1px 5px; }
656
- .btn-xs.btn-round {
657
- padding: 2px 5px; }
658
- .btn-xs.btn-simple {
659
- padding: 3px 5px; }
660
-
661
- .btn-wd {
662
- min-width: 140px; }
663
-
664
- .btn-group.select {
665
- width: 100%; }
666
-
667
- .btn-group.select .btn {
668
- text-align: left; }
669
-
670
- .btn-group.select .caret {
671
- position: absolute;
672
- top: 50%;
673
- margin-top: -1px;
674
- right: 8px; }
675
-
676
- .form-control::-moz-placeholder {
677
- color: #DDDDDD;
678
- opacity: 1;
679
- filter: alpha(opacity=100); }
680
-
681
- .form-control:-moz-placeholder {
682
- color: #DDDDDD;
683
- opacity: 1;
684
- filter: alpha(opacity=100); }
685
-
686
- .form-control::-webkit-input-placeholder {
687
- color: #DDDDDD;
688
- opacity: 1;
689
- filter: alpha(opacity=100); }
690
-
691
- .form-control:-ms-input-placeholder {
692
- color: #DDDDDD;
693
- opacity: 1;
694
- filter: alpha(opacity=100); }
695
-
696
- .form-control {
697
- background-color: #FFFFFF;
698
- border: 1px solid #E3E3E3;
699
- border-radius: 4px;
700
- color: #565656;
701
- padding: 8px 12px;
702
- height: 40px;
703
- -webkit-box-shadow: none;
704
- box-shadow: none; }
705
- .form-control:focus {
706
- background-color: #FFFFFF;
707
- border: 1px solid #AAAAAA;
708
- -webkit-box-shadow: none;
709
- box-shadow: none;
710
- outline: 0 !important;
711
- color: #333333; }
712
- .has-success .form-control, .has-error .form-control, .has-success .form-control:focus, .has-error .form-control:focus {
713
- border-color: #E3E3E3;
714
- -webkit-box-shadow: none;
715
- box-shadow: none; }
716
- .has-success .form-control {
717
- color: #87CB16; }
718
- .has-success .form-control:focus {
719
- border-color: #87CB16; }
720
- .has-error .form-control {
721
- color: #FF4A55; }
722
- .has-error .form-control:focus {
723
- border-color: #FF4A55; }
724
- .form-control + .form-control-feedback {
725
- border-radius: 6px;
726
- font-size: 14px;
727
- margin-top: -7px;
728
- position: absolute;
729
- right: 10px;
730
- top: 50%;
731
- vertical-align: middle; }
732
- .open .form-control {
733
- border-radius: 4px 4px 0 0;
734
- border-bottom-color: transparent; }
735
-
736
- .input-lg {
737
- height: 55px;
738
- padding: 14px 30px; }
739
-
740
- .has-error .form-control-feedback {
741
- color: #FF4A55; }
742
-
743
- .has-success .form-control-feedback {
744
- color: #87CB16; }
745
-
746
- .input-group-addon {
747
- background-color: #FFFFFF;
748
- border: 1px solid #E3E3E3;
749
- border-radius: 4px; }
750
- .has-success .input-group-addon, .has-error .input-group-addon {
751
- background-color: #FFFFFF;
752
- border: 1px solid #E3E3E3; }
753
- .has-error .form-control:focus + .input-group-addon {
754
- border-color: #FF4A55;
755
- color: #FF4A55; }
756
- .has-success .form-control:focus + .input-group-addon {
757
- border-color: #87CB16;
758
- color: #87CB16; }
759
- .form-control:focus + .input-group-addon, .form-control:focus ~ .input-group-addon {
760
- background-color: #FFFFFF;
761
- border-color: #9A9A9A; }
762
-
763
- .input-group .form-control:first-child,
764
- .input-group-addon:first-child,
765
- .input-group-btn:first-child > .dropdown-toggle,
766
- .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
767
- border-right: 0 none; }
768
-
769
- .input-group .form-control:last-child,
770
- .input-group-addon:last-child,
771
- .input-group-btn:last-child > .dropdown-toggle,
772
- .input-group-btn:first-child > .btn:not(:first-child) {
773
- border-left: 0 none; }
774
-
775
- .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
776
- background-color: #F5F5F5;
777
- color: #888888;
778
- cursor: not-allowed; }
779
-
780
- .input-group-btn .btn {
781
- border-width: 1px;
782
- padding: 9px 16px; }
783
-
784
- .input-group-btn .btn-default:not(.btn-fill) {
785
- border-color: #DDDDDD; }
786
-
787
- .input-group-btn:last-child > .btn {
788
- margin-left: 0; }
789
-
790
- .input-group-focus .input-group-addon {
791
- border-color: #9A9A9A; }
792
-
793
- .alert {
794
- border: 0;
795
- border-radius: 0;
796
- color: #FFFFFF;
797
- padding: 10px 15px;
798
- font-size: 14px; }
799
- .container .alert {
800
- border-radius: 4px; }
801
- .navbar .alert {
802
- border-radius: 0;
803
- left: 0;
804
- position: absolute;
805
- right: 0;
806
- top: 85px;
807
- width: 100%;
808
- z-index: 3; }
809
- .navbar:not(.navbar-transparent) .alert {
810
- top: 70px; }
811
- .alert span[data-notify="icon"] {
812
- font-size: 30px;
813
- display: block;
814
- left: 15px;
815
- position: absolute;
816
- top: 50%;
817
- margin-top: -15px; }
818
- .alert button.close {
819
- position: absolute;
820
- right: 10px;
821
- top: 50%;
822
- margin-top: -13px;
823
- z-index: 1033;
824
- background-color: #FFFFFF;
825
- display: block;
826
- border-radius: 50%;
827
- opacity: .4;
828
- line-height: 11px;
829
- width: 25px;
830
- height: 25px;
831
- outline: 0 !important;
832
- text-align: center;
833
- padding: 3px;
834
- font-weight: 300; }
835
- .alert button.close:hover {
836
- opacity: .55; }
837
- .alert .close ~ span {
838
- display: block;
839
- max-width: 89%; }
840
- .alert[data-notify="container"] {
841
- padding: 10px 10px 10px 20px;
842
- border-radius: 4px; }
843
- .alert.alert-with-icon {
844
- padding-left: 65px; }
845
-
846
- .alert-info {
847
- background-color: #63d8f1; }
848
-
849
- .alert-success {
850
- background-color: #a1e82c; }
851
-
852
- .alert-warning {
853
- background-color: #ffbc67; }
854
-
855
- .alert-danger {
856
- background-color: #fc727a; }
857
-
858
- .table .radio,
859
- .table .checkbox {
860
- position: relative;
861
- height: 20px;
862
- display: block;
863
- width: 20px;
864
- padding: 0px 0px;
865
- margin: 0px 5px;
866
- text-align: center; }
867
- .table .radio .icons,
868
- .table .checkbox .icons {
869
- left: 5px; }
870
- .table > thead > tr > th,
871
- .table > tbody > tr > th,
872
- .table > tfoot > tr > th,
873
- .table > thead > tr > td,
874
- .table > tbody > tr > td,
875
- .table > tfoot > tr > td {
876
- padding: 12px 8px;
877
- vertical-align: middle; }
878
- .table > thead > tr > th {
879
- border-bottom-width: 1px;
880
- font-size: 12px;
881
- text-transform: uppercase;
882
- color: #9A9A9A;
883
- font-weight: 400;
884
- padding-bottom: 5px; }
885
- .table .td-actions .btn {
886
- opacity: 0.36;
887
- filter: alpha(opacity=36); }
888
- .table .td-actions .btn.btn-xs {
889
- padding-left: 3px;
890
- padding-right: 3px; }
891
- .table .td-actions {
892
- min-width: 90px; }
893
- .table > tbody > tr {
894
- position: relative; }
895
- .table > tbody > tr:hover .td-actions .btn {
896
- opacity: 1;
897
- filter: alpha(opacity=100); }
898
-
899
- /* Checkbox and radio */
900
- .checkbox,
901
- .radio {
902
- margin-bottom: 12px;
903
- padding-left: 32px;
904
- position: relative;
905
- -webkit-transition: color 0.25s linear;
906
- transition: color 0.25s linear;
907
- font-size: 14px;
908
- font-weight: normal;
909
- line-height: 1.5;
910
- color: #333333; }
911
-
912
- .checkbox input,
913
- .radio input {
914
- outline: none !important;
915
- display: none; }
916
-
917
- .checkbox .icons,
918
- .radio .icons {
919
- color: #DDDDDD;
920
- display: block;
921
- height: 20px;
922
- left: 0;
923
- position: absolute;
924
- top: 0;
925
- width: 20px;
926
- text-align: center;
927
- line-height: 21px;
928
- font-size: 20px;
929
- cursor: pointer;
930
- -webkit-transition: color 0.2s linear;
931
- transition: color 0.2s linear; }
932
-
933
- .checkbox .icons .first-icon,
934
- .radio .icons .first-icon,
935
- .checkbox .icons .second-icon,
936
- .radio .icons .second-icon {
937
- display: inline-table;
938
- position: absolute;
939
- left: 0;
940
- top: 0;
941
- background-color: transparent;
942
- margin: 0;
943
- opacity: 1;
944
- filter: alpha(opacity=100); }
945
-
946
- .checkbox .icons .second-icon,
947
- .radio .icons .second-icon {
948
- opacity: 0;
949
- filter: alpha(opacity=0); }
950
-
951
- .checkbox:hover,
952
- .radio:hover {
953
- -webkit-transition: color 0.2s linear;
954
- transition: color 0.2s linear; }
955
-
956
- .checkbox:hover .first-icon,
957
- .radio:hover .first-icon {
958
- opacity: 0;
959
- filter: alpha(opacity=0); }
960
-
961
- .checkbox:hover .second-icon,
962
- .radio:hover .second-icon {
963
- opacity: 1;
964
- filter: alpha(opacity=100); }
965
-
966
- .checkbox.checked,
967
- .radio.checked {
968
- color: #1DC7EA; }
969
-
970
- .checkbox.checked .first-icon,
971
- .radio.checked .first-icon {
972
- opacity: 0;
973
- filter: alpha(opacity=0); }
974
-
975
- .checkbox.checked .second-icon,
976
- .radio.checked .second-icon {
977
- opacity: 1;
978
- filter: alpha(opacity=100);
979
- color: #1DC7EA;
980
- -webkit-transition: color 0.2s linear;
981
- transition: color 0.2s linear; }
982
-
983
- .checkbox.disabled,
984
- .radio.disabled {
985
- cursor: default;
986
- color: #DDDDDD !important; }
987
-
988
- .checkbox.disabled .icons,
989
- .radio.disabled .icons {
990
- color: #DDDDDD !important; }
991
-
992
- .checkbox.disabled .first-icon,
993
- .radio.disabled .first-icon {
994
- opacity: 1;
995
- filter: alpha(opacity=100); }
996
-
997
- .checkbox.disabled .second-icon,
998
- .radio.disabled .second-icon {
999
- opacity: 0;
1000
- filter: alpha(opacity=0); }
1001
-
1002
- .checkbox.disabled.checked .icons,
1003
- .radio.disabled.checked .icons {
1004
- color: #DDDDDD; }
1005
-
1006
- .checkbox.disabled.checked .first-icon,
1007
- .radio.disabled.checked .first-icon {
1008
- opacity: 0;
1009
- filter: alpha(opacity=0); }
1010
-
1011
- .checkbox.disabled.checked .second-icon,
1012
- .radio.disabled.checked .second-icon {
1013
- opacity: 1;
1014
- filter: alpha(opacity=100);
1015
- color: #D9D9D9; }
1016
-
1017
- /* ============================================================
1018
- * bootstrapSwitch v1.3 by Larentis Mattia @spiritualGuru
1019
- * http://www.larentis.eu/switch/
1020
- * ============================================================
1021
- * Licensed under the Apache License, Version 2.0
1022
- * http://www.apache.org/licenses/LICENSE-2.0
1023
- * ============================================================ */
1024
- .has-switch {
1025
- border-radius: 30px;
1026
- cursor: pointer;
1027
- display: inline-block;
1028
- line-height: 1.72222;
1029
- overflow: hidden;
1030
- position: relative;
1031
- text-align: left;
1032
- width: 60px;
1033
- -webkit-user-select: none;
1034
- -moz-user-select: none;
1035
- -ms-user-select: none;
1036
- -o-user-select: none;
1037
- user-select: none;
1038
- /* this code is for fixing safari bug with hidden overflow for border-radius */
1039
- -webkit-mask: url("../img/mask.png") 0 0 no-repeat;
1040
- -webkit-mask-size: 60px 24px;
1041
- mask: url("../img/mask.png") 0 0 no-repeat; }
1042
-
1043
- .has-switch.deactivate {
1044
- opacity: 0.5;
1045
- filter: alpha(opacity=50);
1046
- cursor: default !important; }
1047
-
1048
- .has-switch.deactivate label,
1049
- .has-switch.deactivate span {
1050
- cursor: default !important; }
1051
-
1052
- .has-switch > div {
1053
- position: relative;
1054
- top: 0;
1055
- width: 100px; }
1056
-
1057
- .has-switch > div.switch-animate {
1058
- -webkit-transition: left 0.25s ease-out;
1059
- transition: left 0.25s ease-out; }
1060
-
1061
- .has-switch > div.switch-off {
1062
- left: -35px; }
1063
-
1064
- .has-switch > div.switch-on {
1065
- left: 0; }
1066
-
1067
- .has-switch > div label {
1068
- background-color: #FFFFFF;
1069
- background: white;
1070
- background: -moz-linear-gradient(top, white 0%, #f1f1f2 100%);
1071
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #f1f1f2));
1072
- background: -webkit-linear-gradient(top, white 0%, #f1f1f2 100%);
1073
- background: -o-linear-gradient(top, white 0%, #f1f1f2 100%);
1074
- background: -ms-linear-gradient(top, white 0%, #f1f1f2 100%);
1075
- background: linear-gradient(to bottom, white 0%, #f1f1f2 100%);
1076
- background-size: 150% 150%;
1077
- box-shadow: 0 1px 1px #FFFFFF inset, 0 1px 1px rgba(0, 0, 0, 0.25);
1078
- cursor: pointer; }
1079
-
1080
- .has-switch input[type=checkbox] {
1081
- display: none; }
1082
-
1083
- .has-switch span {
1084
- /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset; */
1085
- cursor: pointer;
1086
- float: left;
1087
- font-size: 11px;
1088
- font-weight: 400;
1089
- height: 24px;
1090
- line-height: 15px;
1091
- margin: 0;
1092
- padding-bottom: 6px;
1093
- padding-top: 5px;
1094
- position: relative;
1095
- text-align: center;
1096
- text-indent: -10px;
1097
- width: 50%;
1098
- z-index: 1;
1099
- -webkit-transition: 0.25s ease-out;
1100
- transition: 0.25s ease-out; }
1101
-
1102
- .has-switch span.switch-left {
1103
- background-color: #1DC7EA;
1104
- border-left: 1px solid transparent;
1105
- border-radius: 30px 0 0 30px;
1106
- color: #FFFFFF; }
1107
-
1108
- .has-switch .switch-off span.switch-left {
1109
- background-color: #DDDDDD; }
1110
-
1111
- .has-switch span.switch-right {
1112
- border-radius: 0 30px 30px 0;
1113
- background-color: #1DC7EA;
1114
- color: #ffffff;
1115
- text-indent: 1px; }
1116
-
1117
- .has-switch .switch-off span.switch-right {
1118
- background-color: #DDDDDD; }
1119
-
1120
- .has-switch label {
1121
- border-radius: 12px;
1122
- float: left;
1123
- height: 22px;
1124
- margin: 1px -13px;
1125
- padding: 0;
1126
- position: relative;
1127
- transition: all 0.25s ease-out 0s;
1128
- vertical-align: middle;
1129
- width: 22px;
1130
- z-index: 100;
1131
- -webkit-transition: 0.25s ease-out;
1132
- transition: 0.25s ease-out; }
1133
-
1134
- .has-switch .switch-on .fa-check:before {
1135
- margin-left: 10px; }
1136
-
1137
- .has-switch:hover .switch-on label {
1138
- margin: 1px -17px;
1139
- width: 26px; }
1140
-
1141
- .has-switch:hover .switch-off label {
1142
- margin: 1px -13px;
1143
- width: 26px; }
1144
-
1145
- .nav > li > a:hover,
1146
- .nav > li > a:focus {
1147
- background-color: transparent; }
1148
-
1149
- .navbar {
1150
- border: 0;
1151
- font-size: 16px;
1152
- border-radius: 0; }
1153
- .navbar .navbar-brand {
1154
- font-weight: 400;
1155
- margin: 5px 0px;
1156
- padding: 15px 15px;
1157
- font-size: 20px; }
1158
- .navbar .navbar-nav > li > a {
1159
- padding: 10px 15px;
1160
- margin: 10px 3px;
1161
- position: relative; }
1162
- .navbar .navbar-nav > li > a.btn {
1163
- margin: 15px 3px;
1164
- padding: 8px 16px; }
1165
- .navbar .navbar-nav > li > a.btn-round {
1166
- margin: 16px 3px; }
1167
- .navbar .navbar-nav > li > a [class^="fa"] {
1168
- font-size: 19px;
1169
- position: relative;
1170
- line-height: 16px;
1171
- top: 1px; }
1172
- .navbar .navbar-nav .notification {
1173
- position: absolute;
1174
- background-color: #FB404B;
1175
- text-align: center;
1176
- border-radius: 10px;
1177
- min-width: 18px;
1178
- padding: 0 5px;
1179
- height: 18px;
1180
- font-size: 12px;
1181
- color: #FFFFFF;
1182
- font-weight: bold;
1183
- line-height: 18px;
1184
- top: 0px;
1185
- left: 7px; }
1186
- .navbar .btn {
1187
- margin: 15px 3px;
1188
- font-size: 14px; }
1189
- .navbar .btn-simple {
1190
- font-size: 16px; }
1191
- .navbar.fixed {
1192
- width: calc(100% - $sidebar-width);
1193
- right: 0;
1194
- left: auto;
1195
- border-radius: 0; }
1196
-
1197
- .navbar-nav > li > .dropdown-menu {
1198
- border-radius: 10px;
1199
- margin-top: -5px; }
1200
-
1201
- .navbar-transparent .navbar-brand, [class*="navbar-ct"] .navbar-brand {
1202
- color: #FFFFFF;
1203
- opacity: 0.9;
1204
- filter: alpha(opacity=90); }
1205
- .navbar-transparent .navbar-brand:focus, .navbar-transparent .navbar-brand:hover, [class*="navbar-ct"] .navbar-brand:focus, [class*="navbar-ct"] .navbar-brand:hover {
1206
- background-color: transparent;
1207
- opacity: 1;
1208
- filter: alpha(opacity=100); }
1209
- .navbar-transparent .navbar-nav > li > a:not(.btn), [class*="navbar-ct"] .navbar-nav > li > a:not(.btn) {
1210
- color: #FFFFFF;
1211
- border-color: #FFFFFF;
1212
- opacity: 0.8;
1213
- filter: alpha(opacity=80); }
1214
- .navbar-transparent .navbar-nav > .active > a:not(.btn),
1215
- .navbar-transparent .navbar-nav > .active > a:hover:not(.btn),
1216
- .navbar-transparent .navbar-nav > .active > a:focus:not(.btn),
1217
- .navbar-transparent .navbar-nav > li > a:hover:not(.btn),
1218
- .navbar-transparent .navbar-nav > li > a:focus:not(.btn), [class*="navbar-ct"] .navbar-nav > .active > a:not(.btn),
1219
- [class*="navbar-ct"] .navbar-nav > .active > a:hover:not(.btn),
1220
- [class*="navbar-ct"] .navbar-nav > .active > a:focus:not(.btn),
1221
- [class*="navbar-ct"] .navbar-nav > li > a:hover:not(.btn),
1222
- [class*="navbar-ct"] .navbar-nav > li > a:focus:not(.btn) {
1223
- background-color: transparent;
1224
- border-radius: 3px;
1225
- color: #FFFFFF;
1226
- opacity: 1;
1227
- filter: alpha(opacity=100); }
1228
- .navbar-transparent .navbar-nav .nav > li > a.btn:hover, [class*="navbar-ct"] .navbar-nav .nav > li > a.btn:hover {
1229
- background-color: transparent; }
1230
- .navbar-transparent .navbar-nav > .dropdown > a .caret,
1231
- .navbar-transparent .navbar-nav > .dropdown > a:hover .caret,
1232
- .navbar-transparent .navbar-nav > .dropdown > a:focus .caret, [class*="navbar-ct"] .navbar-nav > .dropdown > a .caret,
1233
- [class*="navbar-ct"] .navbar-nav > .dropdown > a:hover .caret,
1234
- [class*="navbar-ct"] .navbar-nav > .dropdown > a:focus .caret {
1235
- border-bottom-color: #FFFFFF;
1236
- border-top-color: #FFFFFF; }
1237
- .navbar-transparent .navbar-nav > .open > a,
1238
- .navbar-transparent .navbar-nav > .open > a:hover,
1239
- .navbar-transparent .navbar-nav > .open > a:focus, [class*="navbar-ct"] .navbar-nav > .open > a,
1240
- [class*="navbar-ct"] .navbar-nav > .open > a:hover,
1241
- [class*="navbar-ct"] .navbar-nav > .open > a:focus {
1242
- background-color: transparent;
1243
- color: #FFFFFF;
1244
- opacity: 1;
1245
- filter: alpha(opacity=100); }
1246
- .navbar-transparent .btn-default, [class*="navbar-ct"] .btn-default {
1247
- color: #FFFFFF;
1248
- border-color: #FFFFFF; }
1249
- .navbar-transparent .btn-default.btn-fill, [class*="navbar-ct"] .btn-default.btn-fill {
1250
- color: #9A9A9A;
1251
- background-color: #FFFFFF;
1252
- opacity: 0.9;
1253
- filter: alpha(opacity=90); }
1254
- .navbar-transparent .btn-default.btn-fill:hover,
1255
- .navbar-transparent .btn-default.btn-fill:focus,
1256
- .navbar-transparent .btn-default.btn-fill:active,
1257
- .navbar-transparent .btn-default.btn-fill.active,
1258
- .navbar-transparent .open .dropdown-toggle.btn-fill.btn-default, [class*="navbar-ct"] .btn-default.btn-fill:hover,
1259
- [class*="navbar-ct"] .btn-default.btn-fill:focus,
1260
- [class*="navbar-ct"] .btn-default.btn-fill:active,
1261
- [class*="navbar-ct"] .btn-default.btn-fill.active,
1262
- [class*="navbar-ct"] .open .dropdown-toggle.btn-fill.btn-default {
1263
- border-color: #FFFFFF;
1264
- opacity: 1;
1265
- filter: alpha(opacity=100); }
1266
-
1267
- .navbar-transparent .dropdown-menu .divider {
1268
- background-color: rgba(255, 255, 255, 0.2); }
1269
-
1270
- .nav-open .nav .caret {
1271
- border-bottom-color: #FFFFFF;
1272
- border-top-color: #FFFFFF; }
1273
-
1274
- .navbar-default {
1275
- background-color: rgba(255, 255, 255, 0.96);
1276
- border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
1277
- .navbar-default .navbar-nav > li > a:not(.btn) {
1278
- color: #9A9A9A; }
1279
- .navbar-default .navbar-nav > .active > a,
1280
- .navbar-default .navbar-nav > .active > a:not(.btn):hover,
1281
- .navbar-default .navbar-nav > .active > a:not(.btn):focus,
1282
- .navbar-default .navbar-nav > li > a:not(.btn):hover,
1283
- .navbar-default .navbar-nav > li > a:not(.btn):focus {
1284
- background-color: transparent;
1285
- border-radius: 3px;
1286
- color: #1DC7EA;
1287
- opacity: 1;
1288
- filter: alpha(opacity=100); }
1289
- .navbar-default .navbar-nav > .dropdown > a:hover .caret,
1290
- .navbar-default .navbar-nav > .dropdown > a:focus .caret {
1291
- border-bottom-color: #1DC7EA;
1292
- border-top-color: #1DC7EA; }
1293
- .navbar-default .navbar-nav > .open > a,
1294
- .navbar-default .navbar-nav > .open > a:hover,
1295
- .navbar-default .navbar-nav > .open > a:focus {
1296
- background-color: transparent;
1297
- color: #1DC7EA; }
1298
- .navbar-default .navbar-nav .navbar-toggle:hover, .navbar-default .navbar-nav .navbar-toggle:focus {
1299
- background-color: transparent; }
1300
- .navbar-default:not(.navbar-transparent) .btn-default:hover {
1301
- color: #1DC7EA;
1302
- border-color: #1DC7EA; }
1303
- .navbar-default:not(.navbar-transparent) .btn-neutral, .navbar-default:not(.navbar-transparent) .btn-neutral:hover, .navbar-default:not(.navbar-transparent) .btn-neutral:active {
1304
- color: #9A9A9A; }
1305
-
1306
- /* Navbar with icons */
1307
- .navbar-icons.navbar .navbar-brand {
1308
- margin-top: 12px;
1309
- margin-bottom: 12px; }
1310
- .navbar-icons .navbar-nav > li > a {
1311
- text-align: center;
1312
- padding: 6px 15px;
1313
- margin: 6px 3px; }
1314
- .navbar-icons .navbar-nav [class^="pe"] {
1315
- font-size: 30px;
1316
- position: relative; }
1317
- .navbar-icons .navbar-nav p {
1318
- margin: 3px 0 0; }
1319
-
1320
- .navbar-form {
1321
- -webkit-box-shadow: none;
1322
- box-shadow: none; }
1323
- .navbar-form .form-control {
1324
- border-radius: 0;
1325
- border: 0;
1326
- padding: 0;
1327
- background-color: transparent;
1328
- height: 22px;
1329
- font-size: 16px;
1330
- line-height: 1.5;
1331
- color: #E3E3E3; }
1332
- .navbar-transparent .navbar-form .form-control, [class*="navbar-ct"] .navbar-form .form-control {
1333
- color: #FFFFFF;
1334
- border: 0;
1335
- border-bottom: 1px solid rgba(255, 255, 255, 0.6); }
1336
-
1337
- .navbar-ct-blue {
1338
- background-color: #4091e2; }
1339
-
1340
- .navbar-ct-azure {
1341
- background-color: #63d8f1; }
1342
-
1343
- .navbar-ct-green {
1344
- background-color: #a1e82c; }
1345
-
1346
- .navbar-ct-orange {
1347
- background-color: #ffbc67; }
1348
-
1349
- .navbar-ct-red {
1350
- background-color: #fc727a; }
1351
-
1352
- .navbar-transparent {
1353
- padding-top: 15px;
1354
- background-color: transparent;
1355
- border-bottom: 1px solid transparent; }
1356
-
1357
- .navbar-toggle {
1358
- margin-top: 19px;
1359
- margin-bottom: 19px;
1360
- border: 0; }
1361
- .navbar-toggle .icon-bar {
1362
- background-color: #FFFFFF; }
1363
- .navbar-toggle .navbar-collapse,
1364
- .navbar-toggle .navbar-form {
1365
- border-color: transparent; }
1366
- .navbar-toggle.navbar-default .navbar-toggle:hover, .navbar-toggle.navbar-default .navbar-toggle:focus {
1367
- background-color: transparent; }
1368
-
1369
- .footer {
1370
- background-color: #FFFFFF;
1371
- line-height: 20px; }
1372
- .footer nav > ul {
1373
- list-style: none;
1374
- margin: 0;
1375
- padding: 0;
1376
- font-weight: normal; }
1377
- .footer nav > ul a:not(.btn) {
1378
- color: #9A9A9A;
1379
- display: block;
1380
- margin-bottom: 3px; }
1381
- .footer nav > ul a:not(.btn):hover, .footer nav > ul a:not(.btn):focus {
1382
- color: #777777; }
1383
- .footer .social-area {
1384
- padding: 15px 0; }
1385
- .footer .social-area h5 {
1386
- padding-bottom: 15px; }
1387
- .footer .social-area > a:not(.btn) {
1388
- color: #9A9A9A;
1389
- display: inline-block;
1390
- vertical-align: top;
1391
- padding: 10px 5px;
1392
- font-size: 20px;
1393
- font-weight: normal;
1394
- line-height: 20px;
1395
- text-align: center; }
1396
- .footer .social-area > a:not(.btn):hover, .footer .social-area > a:not(.btn):focus {
1397
- color: #777777; }
1398
- .footer .copyright {
1399
- color: #777777;
1400
- padding: 10px 15px;
1401
- margin: 10px 3px;
1402
- line-height: 20px;
1403
- font-size: 14px; }
1404
- .footer hr {
1405
- border-color: #DDDDDD; }
1406
- .footer .title {
1407
- color: #777777; }
1408
-
1409
- .footer-default {
1410
- background-color: #F5F5F5; }
1411
-
1412
- .footer:not(.footer-big) nav > ul {
1413
- font-size: 14px; }
1414
- .footer:not(.footer-big) nav > ul li {
1415
- margin-left: 20px;
1416
- float: left; }
1417
- .footer:not(.footer-big) nav > ul a {
1418
- padding: 10px 0px;
1419
- margin: 10px 10px 10px 0px; }
1420
-
1421
- .dropdown-menu {
1422
- visibility: hidden;
1423
- margin: 0;
1424
- padding: 0;
1425
- border-radius: 10px;
1426
- display: block;
1427
- z-index: 9000;
1428
- position: absolute;
1429
- opacity: 0;
1430
- filter: alpha(opacity=0);
1431
- -webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.125);
1432
- box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.125); }
1433
- .open .dropdown-menu {
1434
- opacity: 1;
1435
- filter: alpha(opacity=100);
1436
- visibility: visible; }
1437
- .select .dropdown-menu {
1438
- border-radius: 0 0 10px 10px;
1439
- -webkit-box-shadow: none;
1440
- box-shadow: none;
1441
- -webkit-transform-origin: 50% -40px;
1442
- -moz-transform-origin: 50% -40px;
1443
- -o-transform-origin: 50% -40px;
1444
- -ms-transform-origin: 50% -40px;
1445
- transform-origin: 50% -40px;
1446
- -webkit-transform: scale(1);
1447
- -moz-transform: scale(1);
1448
- -o-transform: scale(1);
1449
- -ms-transform: scale(1);
1450
- transform: scale(1);
1451
- -webkit-transition: all 150ms linear;
1452
- -moz-transition: all 150ms linear;
1453
- -o-transition: all 150ms linear;
1454
- -ms-transition: all 150ms linear;
1455
- transition: all 150ms linear;
1456
- margin-top: -20px; }
1457
- .select.open .dropdown-menu {
1458
- margin-top: -1px; }
1459
- .dropdown-menu > li > a {
1460
- padding: 8px 16px;
1461
- color: #333333; }
1462
- .dropdown-menu > li > a img {
1463
- margin-top: -3px; }
1464
- .dropdown-menu > li > a:focus {
1465
- outline: 0 !important; }
1466
- .btn-group.select .dropdown-menu {
1467
- min-width: 100%; }
1468
- .dropdown-menu > li:first-child > a {
1469
- border-top-left-radius: 10px;
1470
- border-top-right-radius: 10px; }
1471
- .dropdown-menu > li:last-child > a {
1472
- border-bottom-left-radius: 10px;
1473
- border-bottom-right-radius: 10px; }
1474
- .select .dropdown-menu > li:first-child > a {
1475
- border-radius: 0;
1476
- border-bottom: 0 none; }
1477
- .dropdown-menu > li > a:hover,
1478
- .dropdown-menu > li > a:focus {
1479
- background-color: #F5F5F5;
1480
- color: #333333;
1481
- opacity: 1;
1482
- text-decoration: none; }
1483
- .dropdown-menu.dropdown-blue > li > a:hover, .dropdown-menu.dropdown-blue > li > a:focus {
1484
- background-color: rgba(52, 114, 247, 0.2); }
1485
- .dropdown-menu.dropdown-azure > li > a:hover, .dropdown-menu.dropdown-azure > li > a:focus {
1486
- background-color: rgba(29, 199, 234, 0.2); }
1487
- .dropdown-menu.ct-green > li > a:hover, .dropdown-menu.ct-green > li > a:focus {
1488
- background-color: rgba(135, 203, 22, 0.2); }
1489
- .dropdown-menu.dropdown-orange > li > a:hover, .dropdown-menu.dropdown-orange > li > a:focus {
1490
- background-color: rgba(255, 149, 0, 0.2); }
1491
- .dropdown-menu.dropdown-red > li > a:hover, .dropdown-menu.dropdown-red > li > a:focus {
1492
- background-color: rgba(255, 74, 85, 0.2); }
1493
-
1494
- .dropdown-with-icons > li > a {
1495
- padding-left: 0px;
1496
- line-height: 28px; }
1497
- .dropdown-with-icons i {
1498
- text-align: center;
1499
- line-height: 28px;
1500
- float: left; }
1501
- .dropdown-with-icons i[class^="pe-"] {
1502
- font-size: 24px;
1503
- width: 46px; }
1504
- .dropdown-with-icons i[class^="fa"] {
1505
- font-size: 14px;
1506
- width: 38px; }
1507
-
1508
- .btn-group.select {
1509
- overflow: hidden; }
1510
-
1511
- .btn-group.select.open {
1512
- overflow: visible; }
1513
-
1514
- .card {
1515
- border-radius: 4px;
1516
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(63, 63, 68, 0.1);
1517
- background-color: #FFFFFF;
1518
- margin-bottom: 30px; }
1519
- .card .image {
1520
- width: 100%;
1521
- overflow: hidden;
1522
- height: 260px;
1523
- border-radius: 4px 4px 0 0;
1524
- position: relative;
1525
- -webkit-transform-style: preserve-3d;
1526
- -moz-transform-style: preserve-3d;
1527
- transform-style: preserve-3d; }
1528
- .card .image img {
1529
- width: 100%; }
1530
- .card .filter {
1531
- position: absolute;
1532
- z-index: 2;
1533
- background-color: rgba(0, 0, 0, 0.68);
1534
- top: 0;
1535
- left: 0;
1536
- width: 100%;
1537
- height: 100%;
1538
- text-align: center;
1539
- opacity: 0;
1540
- filter: alpha(opacity=0); }
1541
- .card .filter .btn {
1542
- position: relative;
1543
- top: 50%;
1544
- -webkit-transform: translateY(-50%);
1545
- -ms-transform: translateY(-50%);
1546
- transform: translateY(-50%); }
1547
- .card:hover .filter {
1548
- opacity: 1;
1549
- filter: alpha(opacity=100); }
1550
- .card .btn-hover {
1551
- opacity: 0;
1552
- filter: alpha(opacity=0); }
1553
- .card:hover .btn-hover {
1554
- opacity: 1;
1555
- filter: alpha(opacity=100); }
1556
- .card .content {
1557
- padding: 15px 15px 10px 15px; }
1558
- .card .header {
1559
- padding: 15px 15px 0; }
1560
- .card .category,
1561
- .card label {
1562
- font-size: 14px;
1563
- font-weight: 400;
1564
- color: #9A9A9A;
1565
- margin-bottom: 0px; }
1566
- .card .category i,
1567
- .card label i {
1568
- font-size: 16px; }
1569
- .card label {
1570
- font-size: 12px;
1571
- margin-bottom: 5px;
1572
- text-transform: uppercase; }
1573
- .card .title {
1574
- margin: 0;
1575
- color: #333333;
1576
- font-weight: 300; }
1577
- .card .avatar {
1578
- width: 30px;
1579
- height: 30px;
1580
- overflow: hidden;
1581
- border-radius: 50%;
1582
- margin-right: 5px; }
1583
- .card .description {
1584
- font-size: 14px;
1585
- color: #333; }
1586
- .card .footer {
1587
- padding: 0;
1588
- background-color: transparent;
1589
- line-height: 30px; }
1590
- .card .footer .legend {
1591
- padding: 5px 0; }
1592
- .card .footer hr {
1593
- margin-top: 5px;
1594
- margin-bottom: 5px; }
1595
- .card .stats {
1596
- color: #a9a9a9; }
1597
- .card .footer div {
1598
- display: inline-block; }
1599
- .card .author {
1600
- font-size: 12px;
1601
- font-weight: 600;
1602
- text-transform: uppercase; }
1603
- .card .author i {
1604
- font-size: 14px; }
1605
- .card h6 {
1606
- font-size: 12px;
1607
- margin: 0; }
1608
- .card.card-separator:after {
1609
- height: 100%;
1610
- right: -15px;
1611
- top: 0;
1612
- width: 1px;
1613
- background-color: #DDDDDD;
1614
- content: "";
1615
- position: absolute; }
1616
- .card .ct-chart {
1617
- margin: 30px 0 30px;
1618
- height: 245px; }
1619
- .card .table tbody td:first-child,
1620
- .card .table thead th:first-child {
1621
- padding-left: 15px; }
1622
- .card .table tbody td:last-child,
1623
- .card .table thead th:last-child {
1624
- padding-right: 15px; }
1625
- .card .alert {
1626
- border-radius: 4px;
1627
- position: relative; }
1628
- .card .alert.alert-with-icon {
1629
- padding-left: 65px; }
1630
-
1631
- .card-user .image {
1632
- height: 110px; }
1633
- .card-user .image-plain {
1634
- height: 0;
1635
- margin-top: 110px; }
1636
- .card-user .author {
1637
- text-align: center;
1638
- text-transform: none;
1639
- margin-top: -70px; }
1640
- .card-user .avatar {
1641
- width: 124px;
1642
- height: 124px;
1643
- border: 5px solid #FFFFFF;
1644
- position: relative;
1645
- margin-bottom: 15px; }
1646
- .card-user .avatar.border-gray {
1647
- border-color: #EEEEEE; }
1648
- .card-user .title {
1649
- line-height: 24px; }
1650
- .card-user .content {
1651
- min-height: 240px; }
1652
-
1653
- .card-user .footer,
1654
- .card-price .footer {
1655
- padding: 5px 15px 10px; }
1656
- .card-user hr,
1657
- .card-price hr {
1658
- margin: 5px 15px; }
1659
-
1660
- .card-plain {
1661
- background-color: transparent;
1662
- box-shadow: none;
1663
- border-radius: 0; }
1664
- .card-plain .image {
1665
- border-radius: 4px; }
1666
-
1667
- .ct-label {
1668
- fill: rgba(0, 0, 0, 0.4);
1669
- color: rgba(0, 0, 0, 0.4);
1670
- font-size: 1.3rem;
1671
- line-height: 1; }
1672
-
1673
- .ct-chart-line .ct-label,
1674
- .ct-chart-bar .ct-label {
1675
- display: block;
1676
- display: -webkit-box;
1677
- display: -moz-box;
1678
- display: -ms-flexbox;
1679
- display: -webkit-flex;
1680
- display: flex; }
1681
-
1682
- .ct-label.ct-horizontal.ct-start {
1683
- -webkit-box-align: flex-end;
1684
- -webkit-align-items: flex-end;
1685
- -ms-flex-align: flex-end;
1686
- align-items: flex-end;
1687
- -webkit-box-pack: flex-start;
1688
- -webkit-justify-content: flex-start;
1689
- -ms-flex-pack: flex-start;
1690
- justify-content: flex-start;
1691
- text-align: left;
1692
- text-anchor: start; }
1693
-
1694
- .ct-label.ct-horizontal.ct-end {
1695
- -webkit-box-align: flex-start;
1696
- -webkit-align-items: flex-start;
1697
- -ms-flex-align: flex-start;
1698
- align-items: flex-start;
1699
- -webkit-box-pack: flex-start;
1700
- -webkit-justify-content: flex-start;
1701
- -ms-flex-pack: flex-start;
1702
- justify-content: flex-start;
1703
- text-align: left;
1704
- text-anchor: start; }
1705
-
1706
- .ct-label.ct-vertical.ct-start {
1707
- -webkit-box-align: flex-end;
1708
- -webkit-align-items: flex-end;
1709
- -ms-flex-align: flex-end;
1710
- align-items: flex-end;
1711
- -webkit-box-pack: flex-end;
1712
- -webkit-justify-content: flex-end;
1713
- -ms-flex-pack: flex-end;
1714
- justify-content: flex-end;
1715
- text-align: right;
1716
- text-anchor: end; }
1717
-
1718
- .ct-label.ct-vertical.ct-end {
1719
- -webkit-box-align: flex-end;
1720
- -webkit-align-items: flex-end;
1721
- -ms-flex-align: flex-end;
1722
- align-items: flex-end;
1723
- -webkit-box-pack: flex-start;
1724
- -webkit-justify-content: flex-start;
1725
- -ms-flex-pack: flex-start;
1726
- justify-content: flex-start;
1727
- text-align: left;
1728
- text-anchor: start; }
1729
-
1730
- .ct-chart-bar .ct-label.ct-horizontal.ct-start {
1731
- -webkit-box-align: flex-end;
1732
- -webkit-align-items: flex-end;
1733
- -ms-flex-align: flex-end;
1734
- align-items: flex-end;
1735
- -webkit-box-pack: center;
1736
- -webkit-justify-content: center;
1737
- -ms-flex-pack: center;
1738
- justify-content: center;
1739
- text-align: center;
1740
- text-anchor: start; }
1741
-
1742
- .ct-chart-bar .ct-label.ct-horizontal.ct-end {
1743
- -webkit-box-align: flex-start;
1744
- -webkit-align-items: flex-start;
1745
- -ms-flex-align: flex-start;
1746
- align-items: flex-start;
1747
- -webkit-box-pack: center;
1748
- -webkit-justify-content: center;
1749
- -ms-flex-pack: center;
1750
- justify-content: center;
1751
- text-align: center;
1752
- text-anchor: start; }
1753
-
1754
- .ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start {
1755
- -webkit-box-align: flex-end;
1756
- -webkit-align-items: flex-end;
1757
- -ms-flex-align: flex-end;
1758
- align-items: flex-end;
1759
- -webkit-box-pack: flex-start;
1760
- -webkit-justify-content: flex-start;
1761
- -ms-flex-pack: flex-start;
1762
- justify-content: flex-start;
1763
- text-align: left;
1764
- text-anchor: start; }
1765
-
1766
- .ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end {
1767
- -webkit-box-align: flex-start;
1768
- -webkit-align-items: flex-start;
1769
- -ms-flex-align: flex-start;
1770
- align-items: flex-start;
1771
- -webkit-box-pack: flex-start;
1772
- -webkit-justify-content: flex-start;
1773
- -ms-flex-pack: flex-start;
1774
- justify-content: flex-start;
1775
- text-align: left;
1776
- text-anchor: start; }
1777
-
1778
- .ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start {
1779
- -webkit-box-align: center;
1780
- -webkit-align-items: center;
1781
- -ms-flex-align: center;
1782
- align-items: center;
1783
- -webkit-box-pack: flex-end;
1784
- -webkit-justify-content: flex-end;
1785
- -ms-flex-pack: flex-end;
1786
- justify-content: flex-end;
1787
- text-align: right;
1788
- text-anchor: end; }
1789
-
1790
- .ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end {
1791
- -webkit-box-align: center;
1792
- -webkit-align-items: center;
1793
- -ms-flex-align: center;
1794
- align-items: center;
1795
- -webkit-box-pack: flex-start;
1796
- -webkit-justify-content: flex-start;
1797
- -ms-flex-pack: flex-start;
1798
- justify-content: flex-start;
1799
- text-align: left;
1800
- text-anchor: end; }
1801
-
1802
- .ct-grid {
1803
- stroke: rgba(0, 0, 0, 0.2);
1804
- stroke-width: 1px;
1805
- stroke-dasharray: 2px; }
1806
-
1807
- .ct-point {
1808
- stroke-width: 8px;
1809
- stroke-linecap: round; }
1810
-
1811
- .ct-line {
1812
- fill: none;
1813
- stroke-width: 3px; }
1814
-
1815
- .ct-area {
1816
- stroke: none;
1817
- fill-opacity: 0.8; }
1818
-
1819
- .ct-bar {
1820
- fill: none;
1821
- stroke-width: 10px; }
1822
-
1823
- .ct-slice-donut {
1824
- fill: none;
1825
- stroke-width: 60px; }
1826
-
1827
- .ct-series-a .ct-point, .ct-series-a .ct-line, .ct-series-a .ct-bar, .ct-series-a .ct-slice-donut {
1828
- stroke: #1DC7EA; }
1829
- .ct-series-a .ct-slice-pie, .ct-series-a .ct-area {
1830
- fill: #1DC7EA; }
1831
-
1832
- .ct-series-b .ct-point, .ct-series-b .ct-line, .ct-series-b .ct-bar, .ct-series-b .ct-slice-donut {
1833
- stroke: #FB404B; }
1834
- .ct-series-b .ct-slice-pie, .ct-series-b .ct-area {
1835
- fill: #FB404B; }
1836
-
1837
- .ct-series-c .ct-point, .ct-series-c .ct-line, .ct-series-c .ct-bar, .ct-series-c .ct-slice-donut {
1838
- stroke: #FFA534; }
1839
- .ct-series-c .ct-slice-pie, .ct-series-c .ct-area {
1840
- fill: #FFA534; }
1841
-
1842
- .ct-series-d .ct-point, .ct-series-d .ct-line, .ct-series-d .ct-bar, .ct-series-d .ct-slice-donut {
1843
- stroke: #9368E9; }
1844
- .ct-series-d .ct-slice-pie, .ct-series-d .ct-area {
1845
- fill: #9368E9; }
1846
-
1847
- .ct-series-e .ct-point, .ct-series-e .ct-line, .ct-series-e .ct-bar, .ct-series-e .ct-slice-donut {
1848
- stroke: #87CB16; }
1849
- .ct-series-e .ct-slice-pie, .ct-series-e .ct-area {
1850
- fill: #87CB16; }
1851
-
1852
- .ct-series-f .ct-point, .ct-series-f .ct-line, .ct-series-f .ct-bar, .ct-series-f .ct-slice-donut {
1853
- stroke: #1F77D0; }
1854
- .ct-series-f .ct-slice-pie, .ct-series-f .ct-area {
1855
- fill: #1F77D0; }
1856
-
1857
- .ct-series-g .ct-point, .ct-series-g .ct-line, .ct-series-g .ct-bar, .ct-series-g .ct-slice-donut {
1858
- stroke: #5e5e5e; }
1859
- .ct-series-g .ct-slice-pie, .ct-series-g .ct-area {
1860
- fill: #5e5e5e; }
1861
-
1862
- .ct-series-h .ct-point, .ct-series-h .ct-line, .ct-series-h .ct-bar, .ct-series-h .ct-slice-donut {
1863
- stroke: #dd4b39; }
1864
- .ct-series-h .ct-slice-pie, .ct-series-h .ct-area {
1865
- fill: #dd4b39; }
1866
-
1867
- .ct-series-i .ct-point, .ct-series-i .ct-line, .ct-series-i .ct-bar, .ct-series-i .ct-slice-donut {
1868
- stroke: #35465c; }
1869
- .ct-series-i .ct-slice-pie, .ct-series-i .ct-area {
1870
- fill: #35465c; }
1871
-
1872
- .ct-series-j .ct-point, .ct-series-j .ct-line, .ct-series-j .ct-bar, .ct-series-j .ct-slice-donut {
1873
- stroke: #e52d27; }
1874
- .ct-series-j .ct-slice-pie, .ct-series-j .ct-area {
1875
- fill: #e52d27; }
1876
-
1877
- .ct-series-k .ct-point, .ct-series-k .ct-line, .ct-series-k .ct-bar, .ct-series-k .ct-slice-donut {
1878
- stroke: #55acee; }
1879
- .ct-series-k .ct-slice-pie, .ct-series-k .ct-area {
1880
- fill: #55acee; }
1881
-
1882
- .ct-series-l .ct-point, .ct-series-l .ct-line, .ct-series-l .ct-bar, .ct-series-l .ct-slice-donut {
1883
- stroke: #cc2127; }
1884
- .ct-series-l .ct-slice-pie, .ct-series-l .ct-area {
1885
- fill: #cc2127; }
1886
-
1887
- .ct-series-m .ct-point, .ct-series-m .ct-line, .ct-series-m .ct-bar, .ct-series-m .ct-slice-donut {
1888
- stroke: #1769ff; }
1889
- .ct-series-m .ct-slice-pie, .ct-series-m .ct-area {
1890
- fill: #1769ff; }
1891
-
1892
- .ct-series-n .ct-point, .ct-series-n .ct-line, .ct-series-n .ct-bar, .ct-series-n .ct-slice-donut {
1893
- stroke: #6188e2; }
1894
- .ct-series-n .ct-slice-pie, .ct-series-n .ct-area {
1895
- fill: #6188e2; }
1896
-
1897
- .ct-series-o .ct-point, .ct-series-o .ct-line, .ct-series-o .ct-bar, .ct-series-o .ct-slice-donut {
1898
- stroke: #a748ca; }
1899
- .ct-series-o .ct-slice-pie, .ct-series-o .ct-area {
1900
- fill: #a748ca; }
1901
-
1902
- .ct-square {
1903
- display: block;
1904
- position: relative;
1905
- width: 100%; }
1906
- .ct-square:before {
1907
- display: block;
1908
- float: left;
1909
- content: "";
1910
- width: 0;
1911
- height: 0;
1912
- padding-bottom: 100%; }
1913
- .ct-square:after {
1914
- content: "";
1915
- display: table;
1916
- clear: both; }
1917
- .ct-square > svg {
1918
- display: block;
1919
- position: absolute;
1920
- top: 0;
1921
- left: 0; }
1922
-
1923
- .ct-minor-second {
1924
- display: block;
1925
- position: relative;
1926
- width: 100%; }
1927
- .ct-minor-second:before {
1928
- display: block;
1929
- float: left;
1930
- content: "";
1931
- width: 0;
1932
- height: 0;
1933
- padding-bottom: 93.75%; }
1934
- .ct-minor-second:after {
1935
- content: "";
1936
- display: table;
1937
- clear: both; }
1938
- .ct-minor-second > svg {
1939
- display: block;
1940
- position: absolute;
1941
- top: 0;
1942
- left: 0; }
1943
-
1944
- .ct-major-second {
1945
- display: block;
1946
- position: relative;
1947
- width: 100%; }
1948
- .ct-major-second:before {
1949
- display: block;
1950
- float: left;
1951
- content: "";
1952
- width: 0;
1953
- height: 0;
1954
- padding-bottom: 88.88889%; }
1955
- .ct-major-second:after {
1956
- content: "";
1957
- display: table;
1958
- clear: both; }
1959
- .ct-major-second > svg {
1960
- display: block;
1961
- position: absolute;
1962
- top: 0;
1963
- left: 0; }
1964
-
1965
- .ct-minor-third {
1966
- display: block;
1967
- position: relative;
1968
- width: 100%; }
1969
- .ct-minor-third:before {
1970
- display: block;
1971
- float: left;
1972
- content: "";
1973
- width: 0;
1974
- height: 0;
1975
- padding-bottom: 83.33333%; }
1976
- .ct-minor-third:after {
1977
- content: "";
1978
- display: table;
1979
- clear: both; }
1980
- .ct-minor-third > svg {
1981
- display: block;
1982
- position: absolute;
1983
- top: 0;
1984
- left: 0; }
1985
-
1986
- .ct-major-third {
1987
- display: block;
1988
- position: relative;
1989
- width: 100%; }
1990
- .ct-major-third:before {
1991
- display: block;
1992
- float: left;
1993
- content: "";
1994
- width: 0;
1995
- height: 0;
1996
- padding-bottom: 80%; }
1997
- .ct-major-third:after {
1998
- content: "";
1999
- display: table;
2000
- clear: both; }
2001
- .ct-major-third > svg {
2002
- display: block;
2003
- position: absolute;
2004
- top: 0;
2005
- left: 0; }
2006
-
2007
- .ct-perfect-fourth {
2008
- display: block;
2009
- position: relative;
2010
- width: 100%; }
2011
- .ct-perfect-fourth:before {
2012
- display: block;
2013
- float: left;
2014
- content: "";
2015
- width: 0;
2016
- height: 0;
2017
- padding-bottom: 75%; }
2018
- .ct-perfect-fourth:after {
2019
- content: "";
2020
- display: table;
2021
- clear: both; }
2022
- .ct-perfect-fourth > svg {
2023
- display: block;
2024
- position: absolute;
2025
- top: 0;
2026
- left: 0; }
2027
-
2028
- .ct-perfect-fifth {
2029
- display: block;
2030
- position: relative;
2031
- width: 100%; }
2032
- .ct-perfect-fifth:before {
2033
- display: block;
2034
- float: left;
2035
- content: "";
2036
- width: 0;
2037
- height: 0;
2038
- padding-bottom: 66.66667%; }
2039
- .ct-perfect-fifth:after {
2040
- content: "";
2041
- display: table;
2042
- clear: both; }
2043
- .ct-perfect-fifth > svg {
2044
- display: block;
2045
- position: absolute;
2046
- top: 0;
2047
- left: 0; }
2048
-
2049
- .ct-minor-sixth {
2050
- display: block;
2051
- position: relative;
2052
- width: 100%; }
2053
- .ct-minor-sixth:before {
2054
- display: block;
2055
- float: left;
2056
- content: "";
2057
- width: 0;
2058
- height: 0;
2059
- padding-bottom: 62.5%; }
2060
- .ct-minor-sixth:after {
2061
- content: "";
2062
- display: table;
2063
- clear: both; }
2064
- .ct-minor-sixth > svg {
2065
- display: block;
2066
- position: absolute;
2067
- top: 0;
2068
- left: 0; }
2069
-
2070
- .ct-golden-section {
2071
- display: block;
2072
- position: relative;
2073
- width: 100%; }
2074
- .ct-golden-section:before {
2075
- display: block;
2076
- float: left;
2077
- content: "";
2078
- width: 0;
2079
- height: 0;
2080
- padding-bottom: 61.8047%; }
2081
- .ct-golden-section:after {
2082
- content: "";
2083
- display: table;
2084
- clear: both; }
2085
- .ct-golden-section > svg {
2086
- display: block;
2087
- position: absolute;
2088
- top: 0;
2089
- left: 0; }
2090
-
2091
- .ct-major-sixth {
2092
- display: block;
2093
- position: relative;
2094
- width: 100%; }
2095
- .ct-major-sixth:before {
2096
- display: block;
2097
- float: left;
2098
- content: "";
2099
- width: 0;
2100
- height: 0;
2101
- padding-bottom: 60%; }
2102
- .ct-major-sixth:after {
2103
- content: "";
2104
- display: table;
2105
- clear: both; }
2106
- .ct-major-sixth > svg {
2107
- display: block;
2108
- position: absolute;
2109
- top: 0;
2110
- left: 0; }
2111
-
2112
- .ct-minor-seventh {
2113
- display: block;
2114
- position: relative;
2115
- width: 100%; }
2116
- .ct-minor-seventh:before {
2117
- display: block;
2118
- float: left;
2119
- content: "";
2120
- width: 0;
2121
- height: 0;
2122
- padding-bottom: 56.25%; }
2123
- .ct-minor-seventh:after {
2124
- content: "";
2125
- display: table;
2126
- clear: both; }
2127
- .ct-minor-seventh > svg {
2128
- display: block;
2129
- position: absolute;
2130
- top: 0;
2131
- left: 0; }
2132
-
2133
- .ct-major-seventh {
2134
- display: block;
2135
- position: relative;
2136
- width: 100%; }
2137
- .ct-major-seventh:before {
2138
- display: block;
2139
- float: left;
2140
- content: "";
2141
- width: 0;
2142
- height: 0;
2143
- padding-bottom: 53.33333%; }
2144
- .ct-major-seventh:after {
2145
- content: "";
2146
- display: table;
2147
- clear: both; }
2148
- .ct-major-seventh > svg {
2149
- display: block;
2150
- position: absolute;
2151
- top: 0;
2152
- left: 0; }
2153
-
2154
- .ct-octave {
2155
- display: block;
2156
- position: relative;
2157
- width: 100%; }
2158
- .ct-octave:before {
2159
- display: block;
2160
- float: left;
2161
- content: "";
2162
- width: 0;
2163
- height: 0;
2164
- padding-bottom: 50%; }
2165
- .ct-octave:after {
2166
- content: "";
2167
- display: table;
2168
- clear: both; }
2169
- .ct-octave > svg {
2170
- display: block;
2171
- position: absolute;
2172
- top: 0;
2173
- left: 0; }
2174
-
2175
- .ct-major-tenth {
2176
- display: block;
2177
- position: relative;
2178
- width: 100%; }
2179
- .ct-major-tenth:before {
2180
- display: block;
2181
- float: left;
2182
- content: "";
2183
- width: 0;
2184
- height: 0;
2185
- padding-bottom: 40%; }
2186
- .ct-major-tenth:after {
2187
- content: "";
2188
- display: table;
2189
- clear: both; }
2190
- .ct-major-tenth > svg {
2191
- display: block;
2192
- position: absolute;
2193
- top: 0;
2194
- left: 0; }
2195
-
2196
- .ct-major-eleventh {
2197
- display: block;
2198
- position: relative;
2199
- width: 100%; }
2200
- .ct-major-eleventh:before {
2201
- display: block;
2202
- float: left;
2203
- content: "";
2204
- width: 0;
2205
- height: 0;
2206
- padding-bottom: 37.5%; }
2207
- .ct-major-eleventh:after {
2208
- content: "";
2209
- display: table;
2210
- clear: both; }
2211
- .ct-major-eleventh > svg {
2212
- display: block;
2213
- position: absolute;
2214
- top: 0;
2215
- left: 0; }
2216
-
2217
- .ct-major-twelfth {
2218
- display: block;
2219
- position: relative;
2220
- width: 100%; }
2221
- .ct-major-twelfth:before {
2222
- display: block;
2223
- float: left;
2224
- content: "";
2225
- width: 0;
2226
- height: 0;
2227
- padding-bottom: 33.33333%; }
2228
- .ct-major-twelfth:after {
2229
- content: "";
2230
- display: table;
2231
- clear: both; }
2232
- .ct-major-twelfth > svg {
2233
- display: block;
2234
- position: absolute;
2235
- top: 0;
2236
- left: 0; }
2237
-
2238
- .ct-double-octave {
2239
- display: block;
2240
- position: relative;
2241
- width: 100%; }
2242
- .ct-double-octave:before {
2243
- display: block;
2244
- float: left;
2245
- content: "";
2246
- width: 0;
2247
- height: 0;
2248
- padding-bottom: 25%; }
2249
- .ct-double-octave:after {
2250
- content: "";
2251
- display: table;
2252
- clear: both; }
2253
- .ct-double-octave > svg {
2254
- display: block;
2255
- position: absolute;
2256
- top: 0;
2257
- left: 0; }
2258
-
2259
- @media (min-width: 992px) {
2260
- .navbar-form {
2261
- margin-top: 21px;
2262
- margin-bottom: 21px;
2263
- padding-left: 5px;
2264
- padding-right: 5px; }
2265
-
2266
- .navbar-nav > li > .dropdown-menu, .dropdown .dropdown-menu {
2267
- -webkit-transform: scale(0);
2268
- -moz-transform: scale(0);
2269
- -o-transform: scale(0);
2270
- -ms-transform: scale(0);
2271
- transform: scale(0);
2272
- -webkit-transition: all 370ms cubic-bezier(0.34, 1.61, 0.7, 1);
2273
- -moz-transition: all 370ms cubic-bezier(0.34, 1.61, 0.7, 1);
2274
- -o-transition: all 370ms cubic-bezier(0.34, 1.61, 0.7, 1);
2275
- -ms-transition: all 370ms cubic-bezier(0.34, 1.61, 0.7, 1);
2276
- transition: all 370ms cubic-bezier(0.34, 1.61, 0.7, 1); }
2277
-
2278
- .navbar-nav > li.open > .dropdown-menu, .dropdown.open .dropdown-menu {
2279
- -webkit-transform: scale(1);
2280
- -moz-transform: scale(1);
2281
- -o-transform: scale(1);
2282
- -ms-transform: scale(1);
2283
- transform: scale(1);
2284
- -webkit-transform-origin: 29px -50px;
2285
- -moz-transform-origin: 29px -50px;
2286
- -o-transform-origin: 29px -50px;
2287
- -ms-transform-origin: 29px -50px;
2288
- transform-origin: 29px -50px; }
2289
-
2290
- .navbar-nav > li > .dropdown-menu:before {
2291
- border-bottom: 11px solid rgba(0, 0, 0, 0.2);
2292
- border-left: 11px solid transparent;
2293
- border-right: 11px solid transparent;
2294
- content: "";
2295
- display: inline-block;
2296
- position: absolute;
2297
- left: 12px;
2298
- top: -11px; }
2299
-
2300
- .navbar-nav > li > .dropdown-menu:after {
2301
- border-bottom: 11px solid #FFFFFF;
2302
- border-left: 11px solid transparent;
2303
- border-right: 11px solid transparent;
2304
- content: "";
2305
- display: inline-block;
2306
- position: absolute;
2307
- left: 12px;
2308
- top: -10px; }
2309
-
2310
- .navbar-nav.navbar-right > li > .dropdown-menu:before {
2311
- left: auto;
2312
- right: 12px; }
2313
-
2314
- .navbar-nav.navbar-right > li > .dropdown-menu:after {
2315
- left: auto;
2316
- right: 12px; }
2317
-
2318
- .footer:not(.footer-big) nav > ul li:first-child {
2319
- margin-left: 0; }
2320
-
2321
- body > .navbar-collapse.collapse {
2322
- display: none !important; }
2323
-
2324
- .card form [class*="col-"] {
2325
- padding: 6px; }
2326
- .card form [class*="col-"]:first-child {
2327
- padding-left: 15px; }
2328
- .card form [class*="col-"]:last-child {
2329
- padding-right: 15px; } }
2330
- /* Changes for small display */
2331
- @media (max-width: 991px) {
2332
- .sidebar {
2333
- display: none; }
2334
-
2335
- .main-panel {
2336
- width: 100%; }
2337
-
2338
- .navbar-transparent {
2339
- padding-top: 15px;
2340
- background-color: rgba(0, 0, 0, 0.45); }
2341
-
2342
- body {
2343
- position: relative; }
2344
-
2345
- .wrapper {
2346
- -webkit-transform: translate3d(0px, 0, 0);
2347
- -moz-transform: translate3d(0px, 0, 0);
2348
- -o-transform: translate3d(0px, 0, 0);
2349
- -ms-transform: translate3d(0px, 0, 0);
2350
- transform: translate3d(0px, 0, 0);
2351
- -webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2352
- -moz-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2353
- -o-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2354
- -ms-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2355
- transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2356
- left: 0;
2357
- background-color: white; }
2358
-
2359
- .navbar .container {
2360
- left: 0;
2361
- width: 100%;
2362
- -webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2363
- -moz-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2364
- -o-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2365
- -ms-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2366
- transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2367
- position: relative; }
2368
-
2369
- .navbar .navbar-collapse.collapse,
2370
- .navbar .navbar-collapse.collapse.in,
2371
- .navbar .navbar-collapse.collapsing {
2372
- display: none !important; }
2373
-
2374
- .navbar-nav > li {
2375
- float: none;
2376
- position: relative;
2377
- display: block; }
2378
-
2379
- body > .navbar-collapse {
2380
- position: fixed;
2381
- display: block;
2382
- top: 0;
2383
- height: 100%;
2384
- right: 0;
2385
- left: auto;
2386
- z-index: 1032;
2387
- visibility: visible;
2388
- background-color: #999;
2389
- overflow-y: visible;
2390
- border-top: none;
2391
- text-align: left;
2392
- padding: 0;
2393
- -webkit-transform: translate3d(260px, 0, 0);
2394
- -moz-transform: translate3d(260px, 0, 0);
2395
- -o-transform: translate3d(260px, 0, 0);
2396
- -ms-transform: translate3d(260px, 0, 0);
2397
- transform: translate3d(260px, 0, 0);
2398
- -webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2399
- -moz-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2400
- -o-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2401
- -ms-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
2402
- transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1); }
2403
- body > .navbar-collapse > ul {
2404
- position: relative;
2405
- z-index: 4;
2406
- overflow-y: scroll;
2407
- height: calc(100vh - 61px);
2408
- width: 100%; }
2409
- body > .navbar-collapse::before {
2410
- top: 0;
2411
- left: 0;
2412
- height: 100%;
2413
- width: 100%;
2414
- position: absolute;
2415
- background-color: #282828;
2416
- display: block;
2417
- content: "";
2418
- z-index: 1; }
2419
- body > .navbar-collapse .logo {
2420
- position: relative;
2421
- z-index: 4; }
2422
- body > .navbar-collapse .nav li > a {
2423
- padding: 10px 15px; }
2424
-
2425
- .nav-open .navbar-collapse {
2426
- -webkit-transform: translate3d(0px, 0, 0);
2427
- -moz-transform: translate3d(0px, 0, 0);
2428
- -o-transform: translate3d(0px, 0, 0);
2429
- -ms-transform: translate3d(0px, 0, 0);
2430
- transform: translate3d(0px, 0, 0); }
2431
-
2432
- .nav-open .navbar .container {
2433
- left: -250px; }
2434
-
2435
- .nav-open .wrapper {
2436
- left: 0;
2437
- -webkit-transform: translate3d(-260px, 0, 0);
2438
- -moz-transform: translate3d(-260px, 0, 0);
2439
- -o-transform: translate3d(-260px, 0, 0);
2440
- -ms-transform: translate3d(-260px, 0, 0);
2441
- transform: translate3d(-260px, 0, 0); }
2442
-
2443
- .navbar-toggle .icon-bar {
2444
- display: block;
2445
- position: relative;
2446
- background: #fff;
2447
- width: 24px;
2448
- height: 2px;
2449
- border-radius: 1px;
2450
- margin: 0 auto; }
2451
-
2452
- .navbar-header .navbar-toggle {
2453
- margin: 10px 15px 10px 0;
2454
- width: 40px;
2455
- height: 40px; }
2456
-
2457
- .bar1,
2458
- .bar2,
2459
- .bar3 {
2460
- outline: 1px solid transparent; }
2461
-
2462
- .bar1 {
2463
- top: 0px;
2464
- -webkit-animation: topbar-back 500ms linear 0s;
2465
- -moz-animation: topbar-back 500ms linear 0s;
2466
- animation: topbar-back 500ms 0s;
2467
- -webkit-animation-fill-mode: forwards;
2468
- -moz-animation-fill-mode: forwards;
2469
- animation-fill-mode: forwards; }
2470
-
2471
- .bar2 {
2472
- opacity: 1; }
2473
-
2474
- .bar3 {
2475
- bottom: 0px;
2476
- -webkit-animation: bottombar-back 500ms linear 0s;
2477
- -moz-animation: bottombar-back 500ms linear 0s;
2478
- animation: bottombar-back 500ms 0s;
2479
- -webkit-animation-fill-mode: forwards;
2480
- -moz-animation-fill-mode: forwards;
2481
- animation-fill-mode: forwards; }
2482
-
2483
- .toggled .bar1 {
2484
- top: 6px;
2485
- -webkit-animation: topbar-x 500ms linear 0s;
2486
- -moz-animation: topbar-x 500ms linear 0s;
2487
- animation: topbar-x 500ms 0s;
2488
- -webkit-animation-fill-mode: forwards;
2489
- -moz-animation-fill-mode: forwards;
2490
- animation-fill-mode: forwards; }
2491
-
2492
- .toggled .bar2 {
2493
- opacity: 0; }
2494
-
2495
- .toggled .bar3 {
2496
- bottom: 6px;
2497
- -webkit-animation: bottombar-x 500ms linear 0s;
2498
- -moz-animation: bottombar-x 500ms linear 0s;
2499
- animation: bottombar-x 500ms 0s;
2500
- -webkit-animation-fill-mode: forwards;
2501
- -moz-animation-fill-mode: forwards;
2502
- animation-fill-mode: forwards; }
2503
-
2504
- @keyframes topbar-x {
2505
- 0% {
2506
- top: 0px;
2507
- transform: rotate(0deg); }
2508
- 45% {
2509
- top: 6px;
2510
- transform: rotate(145deg); }
2511
- 75% {
2512
- transform: rotate(130deg); }
2513
- 100% {
2514
- transform: rotate(135deg); } }
2515
- @-webkit-keyframes topbar-x {
2516
- 0% {
2517
- top: 0px;
2518
- -webkit-transform: rotate(0deg); }
2519
- 45% {
2520
- top: 6px;
2521
- -webkit-transform: rotate(145deg); }
2522
- 75% {
2523
- -webkit-transform: rotate(130deg); }
2524
- 100% {
2525
- -webkit-transform: rotate(135deg); } }
2526
- @-moz-keyframes topbar-x {
2527
- 0% {
2528
- top: 0px;
2529
- -moz-transform: rotate(0deg); }
2530
- 45% {
2531
- top: 6px;
2532
- -moz-transform: rotate(145deg); }
2533
- 75% {
2534
- -moz-transform: rotate(130deg); }
2535
- 100% {
2536
- -moz-transform: rotate(135deg); } }
2537
- @keyframes topbar-back {
2538
- 0% {
2539
- top: 6px;
2540
- transform: rotate(135deg); }
2541
- 45% {
2542
- transform: rotate(-10deg); }
2543
- 75% {
2544
- transform: rotate(5deg); }
2545
- 100% {
2546
- top: 0px;
2547
- transform: rotate(0); } }
2548
- @-webkit-keyframes topbar-back {
2549
- 0% {
2550
- top: 6px;
2551
- -webkit-transform: rotate(135deg); }
2552
- 45% {
2553
- -webkit-transform: rotate(-10deg); }
2554
- 75% {
2555
- -webkit-transform: rotate(5deg); }
2556
- 100% {
2557
- top: 0px;
2558
- -webkit-transform: rotate(0); } }
2559
- @-moz-keyframes topbar-back {
2560
- 0% {
2561
- top: 6px;
2562
- -moz-transform: rotate(135deg); }
2563
- 45% {
2564
- -moz-transform: rotate(-10deg); }
2565
- 75% {
2566
- -moz-transform: rotate(5deg); }
2567
- 100% {
2568
- top: 0px;
2569
- -moz-transform: rotate(0); } }
2570
- @keyframes bottombar-x {
2571
- 0% {
2572
- bottom: 0px;
2573
- transform: rotate(0deg); }
2574
- 45% {
2575
- bottom: 6px;
2576
- transform: rotate(-145deg); }
2577
- 75% {
2578
- transform: rotate(-130deg); }
2579
- 100% {
2580
- transform: rotate(-135deg); } }
2581
- @-webkit-keyframes bottombar-x {
2582
- 0% {
2583
- bottom: 0px;
2584
- -webkit-transform: rotate(0deg); }
2585
- 45% {
2586
- bottom: 6px;
2587
- -webkit-transform: rotate(-145deg); }
2588
- 75% {
2589
- -webkit-transform: rotate(-130deg); }
2590
- 100% {
2591
- -webkit-transform: rotate(-135deg); } }
2592
- @-moz-keyframes bottombar-x {
2593
- 0% {
2594
- bottom: 0px;
2595
- -moz-transform: rotate(0deg); }
2596
- 45% {
2597
- bottom: 6px;
2598
- -moz-transform: rotate(-145deg); }
2599
- 75% {
2600
- -moz-transform: rotate(-130deg); }
2601
- 100% {
2602
- -moz-transform: rotate(-135deg); } }
2603
- @keyframes bottombar-back {
2604
- 0% {
2605
- bottom: 6px;
2606
- transform: rotate(-135deg); }
2607
- 45% {
2608
- transform: rotate(10deg); }
2609
- 75% {
2610
- transform: rotate(-5deg); }
2611
- 100% {
2612
- bottom: 0px;
2613
- transform: rotate(0); } }
2614
- @-webkit-keyframes bottombar-back {
2615
- 0% {
2616
- bottom: 6px;
2617
- -webkit-transform: rotate(-135deg); }
2618
- 45% {
2619
- -webkit-transform: rotate(10deg); }
2620
- 75% {
2621
- -webkit-transform: rotate(-5deg); }
2622
- 100% {
2623
- bottom: 0px;
2624
- -webkit-transform: rotate(0); } }
2625
- @-moz-keyframes bottombar-back {
2626
- 0% {
2627
- bottom: 6px;
2628
- -moz-transform: rotate(-135deg); }
2629
- 45% {
2630
- -moz-transform: rotate(10deg); }
2631
- 75% {
2632
- -moz-transform: rotate(-5deg); }
2633
- 100% {
2634
- bottom: 0px;
2635
- -moz-transform: rotate(0); } }
2636
- @-webkit-keyframes fadeIn {
2637
- 0% {
2638
- opacity: 0; }
2639
- 100% {
2640
- opacity: 1; } }
2641
- @-moz-keyframes fadeIn {
2642
- 0% {
2643
- opacity: 0; }
2644
- 100% {
2645
- opacity: 1; } }
2646
- @keyframes fadeIn {
2647
- 0% {
2648
- opacity: 0; }
2649
- 100% {
2650
- opacity: 1; } }
2651
- .dropdown-menu .divider {
2652
- background-color: rgba(229, 229, 229, 0.15); }
2653
-
2654
- .navbar-nav {
2655
- margin: 1px 0; }
2656
- .navbar-nav .open .dropdown-menu > li > a {
2657
- padding: 10px 15px 10px 60px; }
2658
-
2659
- [class*="navbar-"] .navbar-nav > li > a,
2660
- [class*="navbar-"] .navbar-nav > li > a:hover,
2661
- [class*="navbar-"] .navbar-nav > li > a:focus,
2662
- [class*="navbar-"] .navbar-nav .active > a,
2663
- [class*="navbar-"] .navbar-nav .active > a:hover,
2664
- [class*="navbar-"] .navbar-nav .active > a:focus,
2665
- [class*="navbar-"] .navbar-nav .open .dropdown-menu > li > a,
2666
- [class*="navbar-"] .navbar-nav .open .dropdown-menu > li > a:hover,
2667
- [class*="navbar-"] .navbar-nav .open .dropdown-menu > li > a:focus,
2668
- [class*="navbar-"] .navbar-nav .open .dropdown-menu > li > a:active {
2669
- color: white; }
2670
- [class*="navbar-"] .navbar-nav > li > a,
2671
- [class*="navbar-"] .navbar-nav > li > a:hover,
2672
- [class*="navbar-"] .navbar-nav > li > a:focus {
2673
- opacity: .7;
2674
- background-color: transparent;
2675
- outline: none; }
2676
- [class*="navbar-"] .navbar-nav .open .dropdown-menu > li > a:hover,
2677
- [class*="navbar-"] .navbar-nav .open .dropdown-menu > li > a:focus {
2678
- background-color: rgba(255, 255, 255, 0.1); }
2679
- [class*="navbar-"] .navbar-nav.navbar-nav .open .dropdown-menu > li > a:active {
2680
- opacity: 1; }
2681
- [class*="navbar-"] .navbar-nav .dropdown > a:hover .caret {
2682
- border-bottom-color: #fff;
2683
- border-top-color: #fff; }
2684
- [class*="navbar-"] .navbar-nav .dropdown > a:active .caret {
2685
- border-bottom-color: white;
2686
- border-top-color: white; }
2687
-
2688
- .dropdown-menu {
2689
- display: none; }
2690
-
2691
- .navbar-fixed-top {
2692
- -webkit-backface-visibility: hidden; }
2693
-
2694
- #bodyClick {
2695
- height: 100%;
2696
- width: 100%;
2697
- position: fixed;
2698
- opacity: 0;
2699
- top: 0;
2700
- left: auto;
2701
- right: 250px;
2702
- content: "";
2703
- z-index: 9999;
2704
- overflow-x: hidden; }
2705
-
2706
- .social-line .btn {
2707
- margin: 0 0 10px 0; }
2708
-
2709
- .subscribe-line .form-control {
2710
- margin: 0 0 10px 0; }
2711
-
2712
- .social-line.pull-right {
2713
- float: none; }
2714
-
2715
- .footer nav.pull-left {
2716
- float: none !important; }
2717
-
2718
- .footer:not(.footer-big) nav > ul li {
2719
- float: none; }
2720
-
2721
- .social-area.pull-right {
2722
- float: none !important; }
2723
-
2724
- .form-control + .form-control-feedback {
2725
- margin-top: -8px; }
2726
-
2727
- .navbar-toggle:hover, .navbar-toggle:focus {
2728
- background-color: transparent !important; }
2729
-
2730
- .btn.dropdown-toggle {
2731
- margin-bottom: 0; }
2732
-
2733
- .media-post .author {
2734
- width: 20%;
2735
- float: none !important;
2736
- display: block;
2737
- margin: 0 auto 10px; }
2738
-
2739
- .media-post .media-body {
2740
- width: 100%; }
2741
-
2742
- .navbar-collapse.collapse {
2743
- height: 100% !important; }
2744
-
2745
- .navbar-collapse.collapse.in {
2746
- display: block; }
2747
-
2748
- .navbar-header .collapse, .navbar-toggle {
2749
- display: block !important; }
2750
-
2751
- .navbar-header {
2752
- float: none; }
2753
-
2754
- .navbar-nav .open .dropdown-menu {
2755
- position: static;
2756
- float: none;
2757
- width: auto;
2758
- margin-top: 0;
2759
- background-color: transparent;
2760
- border: 0;
2761
- -webkit-box-shadow: none;
2762
- box-shadow: none; }
2763
-
2764
- .navbar-collapse .nav p {
2765
- font-size: 14px;
2766
- margin: 0; }
2767
- .navbar-collapse [class^="pe-7s-"] {
2768
- float: left;
2769
- font-size: 20px;
2770
- margin-right: 10px; } }
2771
- @media (min-width: 992px) {
2772
- .table-full-width {
2773
- margin-left: -15px;
2774
- margin-right: -15px; }
2775
-
2776
- .table-responsive {
2777
- overflow: visible; }
2778
-
2779
- .navbar-nav p {
2780
- line-height: normal;
2781
- margin: 0; } }
2782
- @media (max-width: 991px) {
2783
- .table-responsive {
2784
- width: 100%;
2785
- margin-bottom: 15px;
2786
- overflow-x: scroll;
2787
- overflow-y: hidden;
2788
- -ms-overflow-style: -ms-autohiding-scrollbar;
2789
- -webkit-overflow-scrolling: touch; } }