elderwand 0.1.75 → 0.1.78

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 (444) hide show
  1. package/Environment/environment.js +2 -2
  2. package/NoDuplicate/README.md +94 -46
  3. package/NoDuplicate/no-duplicate.js +43 -25
  4. package/NoDuplicate/package-lock.json +1420 -0
  5. package/NoDuplicate/package.json +22 -24
  6. package/NoDuplicate/tests/characterization.test.js +359 -0
  7. package/SoftDelete/mongoose-soft-delete.js +60 -8
  8. package/SoftDelete/package-lock.json +1391 -0
  9. package/SoftDelete/package.json +20 -22
  10. package/SoftDelete/tests/characterization.test.js +375 -0
  11. package/ToolBox/RequestTrackTools.js +0 -14
  12. package/ToolBox/Routes.js +148 -54
  13. package/ToolBox/package-lock.json +2533 -0
  14. package/ToolBox/package.json +23 -7
  15. package/ToolBox/tests/event-log.test.js +365 -0
  16. package/ToolBox/tests/helpers.js +241 -0
  17. package/ToolBox/tests/request-track-tools.test.js +197 -0
  18. package/ToolBox/tests/routes.test.js +313 -0
  19. package/package.json +39 -29
  20. package/threads/Workers/ControllerWorker.js +38 -58
  21. package/threads/Workers/DBWorker.js +21 -17
  22. package/threads/Workers/MongoClientWorker.js +36 -24
  23. package/threads/package-lock.json +2082 -27
  24. package/threads/package.json +21 -10
  25. package/threads/tests/CrashWorker.js +17 -0
  26. package/threads/tests/DuplicatePartialWorker.js +32 -0
  27. package/threads/tests/EchoWorker.js +13 -0
  28. package/threads/tests/LargePayloadWorker.js +39 -0
  29. package/threads/tests/MalformedPartialWorker.js +27 -0
  30. package/threads/tests/SlowWorker.js +17 -0
  31. package/threads/tests/StreamingPartialWorker.js +47 -0
  32. package/threads/tests/bug-reproducers.js +309 -0
  33. package/threads/tests/locked-interface.js +250 -0
  34. package/threads/tests/tests.js +529 -46
  35. package/threads/threads.js +438 -382
  36. package/utils/package-lock.json +1343 -0
  37. package/utils/package.json +14 -5
  38. package/utils/tests/coordination.test.js +247 -0
  39. package/utils/tests/crypto.test.js +81 -0
  40. package/utils/tests/helpers.js +111 -0
  41. package/utils/tests/http.test.js +324 -0
  42. package/utils/tests/pure.test.js +284 -0
  43. package/utils/tests/strings.test.js +112 -0
  44. package/utils/utils.js +37 -17
  45. package/.idea/.name +0 -1
  46. package/.idea/encodings.xml +0 -6
  47. package/.idea/jsLibraryMappings.xml +0 -6
  48. package/.idea/kle-ElderWand.iml +0 -9
  49. package/.idea/libraries/kle_ElderWand_node_modules.xml +0 -14
  50. package/.idea/misc.xml +0 -13
  51. package/.idea/modules.xml +0 -8
  52. package/.idea/vcs.xml +0 -6
  53. package/.idea/workspace.xml +0 -793
  54. package/BoilerPlate/Documents/.editorconfig +0 -10
  55. package/BoilerPlate/Documents/.sailsrc +0 -5
  56. package/BoilerPlate/Documents/CONTRIBUTING.md +0 -1
  57. package/BoilerPlate/Documents/LICENSE.txt +0 -21
  58. package/BoilerPlate/Documents/Procfile +0 -1
  59. package/BoilerPlate/Documents/README.md +0 -63
  60. package/BoilerPlate/Documents/app/controllers/documents.js +0 -45
  61. package/BoilerPlate/Documents/app/controllers/sectionGrups.js +0 -22
  62. package/BoilerPlate/Documents/app/controllers/sectionTypes.js +0 -51
  63. package/BoilerPlate/Documents/app/controllers/sections.js +0 -139
  64. package/BoilerPlate/Documents/app/controllers/users.js +0 -74
  65. package/BoilerPlate/Documents/app/models/document.js +0 -105
  66. package/BoilerPlate/Documents/app/models/section.js +0 -156
  67. package/BoilerPlate/Documents/app/models/sectionGrup.js +0 -136
  68. package/BoilerPlate/Documents/app/models/sectionType.js +0 -135
  69. package/BoilerPlate/Documents/app/models/user.js +0 -202
  70. package/BoilerPlate/Documents/app/views/404.html +0 -5
  71. package/BoilerPlate/Documents/app/views/500.html +0 -13
  72. package/BoilerPlate/Documents/app/views/documentation.html +0 -37
  73. package/BoilerPlate/Documents/app/views/documents/document.html +0 -11
  74. package/BoilerPlate/Documents/app/views/documents/edit.html +0 -1
  75. package/BoilerPlate/Documents/app/views/documents/form.html +0 -43
  76. package/BoilerPlate/Documents/app/views/documents/index.html +0 -58
  77. package/BoilerPlate/Documents/app/views/documents/new.html +0 -1
  78. package/BoilerPlate/Documents/app/views/documents/show.html +0 -2
  79. package/BoilerPlate/Documents/app/views/includes/foot.html +0 -29
  80. package/BoilerPlate/Documents/app/views/includes/footer.html +0 -1
  81. package/BoilerPlate/Documents/app/views/includes/head.html +0 -31
  82. package/BoilerPlate/Documents/app/views/includes/header.html +0 -47
  83. package/BoilerPlate/Documents/app/views/includes/messages.html +0 -43
  84. package/BoilerPlate/Documents/app/views/layouts/default.html +0 -25
  85. package/BoilerPlate/Documents/app/views/sectionGrups/edit.html +0 -1
  86. package/BoilerPlate/Documents/app/views/sectionGrups/form.html +0 -47
  87. package/BoilerPlate/Documents/app/views/sectionGrups/index.html +0 -33
  88. package/BoilerPlate/Documents/app/views/sectionGrups/new.html +0 -1
  89. package/BoilerPlate/Documents/app/views/sectionGrups/sectionGrup.html +0 -11
  90. package/BoilerPlate/Documents/app/views/sectionGrups/show.html +0 -55
  91. package/BoilerPlate/Documents/app/views/sectionTypes/edit.html +0 -1
  92. package/BoilerPlate/Documents/app/views/sectionTypes/form.html +0 -42
  93. package/BoilerPlate/Documents/app/views/sectionTypes/index.html +0 -33
  94. package/BoilerPlate/Documents/app/views/sectionTypes/new.html +0 -1
  95. package/BoilerPlate/Documents/app/views/sectionTypes/sectionType.html +0 -17
  96. package/BoilerPlate/Documents/app/views/sectionTypes/show.html +0 -55
  97. package/BoilerPlate/Documents/app/views/sections/edit.html +0 -320
  98. package/BoilerPlate/Documents/app/views/sections/form.html +0 -277
  99. package/BoilerPlate/Documents/app/views/sections/index.html +0 -40
  100. package/BoilerPlate/Documents/app/views/sections/liste.html +0 -39
  101. package/BoilerPlate/Documents/app/views/sections/new.html +0 -1
  102. package/BoilerPlate/Documents/app/views/sections/section.html +0 -1
  103. package/BoilerPlate/Documents/app/views/sections/section_Like_blog.html +0 -32
  104. package/BoilerPlate/Documents/app/views/sections/section_Like_project.html +0 -35
  105. package/BoilerPlate/Documents/app/views/sections/section_about.html +0 -31
  106. package/BoilerPlate/Documents/app/views/sections/section_blog.html +0 -47
  107. package/BoilerPlate/Documents/app/views/sections/section_clients.html +0 -23
  108. package/BoilerPlate/Documents/app/views/sections/section_contact.html +0 -74
  109. package/BoilerPlate/Documents/app/views/sections/section_detay1Resimli.html +0 -23
  110. package/BoilerPlate/Documents/app/views/sections/section_detay1Resimsiz.html +0 -11
  111. package/BoilerPlate/Documents/app/views/sections/section_features.html +0 -23
  112. package/BoilerPlate/Documents/app/views/sections/section_funfact.html +0 -19
  113. package/BoilerPlate/Documents/app/views/sections/section_projects.html +0 -49
  114. package/BoilerPlate/Documents/app/views/sections/section_sadeceParagraf.html +0 -13
  115. package/BoilerPlate/Documents/app/views/sections/section_services.html +0 -34
  116. package/BoilerPlate/Documents/app/views/sections/section_slider.html +0 -195
  117. package/BoilerPlate/Documents/app/views/sections/section_team.html +0 -42
  118. package/BoilerPlate/Documents/app/views/sections/section_testimonialSSS.html +0 -51
  119. package/BoilerPlate/Documents/app/views/sections/section_video_about.html +0 -31
  120. package/BoilerPlate/Documents/app/views/sections/show.html +0 -55
  121. package/BoilerPlate/Documents/app/views/users/auth.html +0 -12
  122. package/BoilerPlate/Documents/app/views/users/index.html +0 -26
  123. package/BoilerPlate/Documents/app/views/users/login.html +0 -33
  124. package/BoilerPlate/Documents/app/views/users/show.html +0 -5
  125. package/BoilerPlate/Documents/app/views/users/signup.html +0 -43
  126. package/BoilerPlate/Documents/app/views/users/user.html +0 -28
  127. package/BoilerPlate/Documents/config/config.js +0 -35
  128. package/BoilerPlate/Documents/config/env/development.js +0 -53
  129. package/BoilerPlate/Documents/config/env/env.json +0 -12
  130. package/BoilerPlate/Documents/config/env/production.js +0 -33
  131. package/BoilerPlate/Documents/config/env/test.js +0 -33
  132. package/BoilerPlate/Documents/config/express.js +0 -124
  133. package/BoilerPlate/Documents/config/imager.js +0 -36
  134. package/BoilerPlate/Documents/config/middlewares/authorization.js +0 -55
  135. package/BoilerPlate/Documents/config/passport/facebook.js +0 -43
  136. package/BoilerPlate/Documents/config/passport/github.js +0 -43
  137. package/BoilerPlate/Documents/config/passport/google.js +0 -43
  138. package/BoilerPlate/Documents/config/passport/linkedin.js +0 -44
  139. package/BoilerPlate/Documents/config/passport/local.js +0 -37
  140. package/BoilerPlate/Documents/config/passport/twitter.js +0 -42
  141. package/BoilerPlate/Documents/config/passport.js +0 -40
  142. package/BoilerPlate/Documents/config/routes.js +0 -104
  143. package/BoilerPlate/Documents/lib/utils.js +0 -79
  144. package/BoilerPlate/Documents/nodemon.json +0 -5
  145. package/BoilerPlate/Documents/package-lock.json +0 -8993
  146. package/BoilerPlate/Documents/package.json +0 -49
  147. package/BoilerPlate/Documents/public/css/TheDocs.min.css +0 -1
  148. package/BoilerPlate/Documents/public/css/custom.css +0 -102
  149. package/BoilerPlate/Documents/public/css/skin/skin-blue.css +0 -71
  150. package/BoilerPlate/Documents/public/css/skin/skin-blue.css.map +0 -10
  151. package/BoilerPlate/Documents/public/css/skin/skin-blue.min.css +0 -1
  152. package/BoilerPlate/Documents/public/css/skin/skin-brown.css +0 -71
  153. package/BoilerPlate/Documents/public/css/skin/skin-brown.css.map +0 -10
  154. package/BoilerPlate/Documents/public/css/skin/skin-brown.min.css +0 -1
  155. package/BoilerPlate/Documents/public/css/skin/skin-cyan.css +0 -71
  156. package/BoilerPlate/Documents/public/css/skin/skin-cyan.css.map +0 -10
  157. package/BoilerPlate/Documents/public/css/skin/skin-cyan.min.css +0 -1
  158. package/BoilerPlate/Documents/public/css/skin/skin-dark.css +0 -71
  159. package/BoilerPlate/Documents/public/css/skin/skin-dark.css.map +0 -10
  160. package/BoilerPlate/Documents/public/css/skin/skin-dark.min.css +0 -1
  161. package/BoilerPlate/Documents/public/css/skin/skin-gray.css +0 -71
  162. package/BoilerPlate/Documents/public/css/skin/skin-gray.css.map +0 -10
  163. package/BoilerPlate/Documents/public/css/skin/skin-gray.min.css +0 -1
  164. package/BoilerPlate/Documents/public/css/skin/skin-green.css +0 -71
  165. package/BoilerPlate/Documents/public/css/skin/skin-green.css.map +0 -10
  166. package/BoilerPlate/Documents/public/css/skin/skin-green.min.css +0 -1
  167. package/BoilerPlate/Documents/public/css/skin/skin-orange.css +0 -71
  168. package/BoilerPlate/Documents/public/css/skin/skin-orange.css.map +0 -10
  169. package/BoilerPlate/Documents/public/css/skin/skin-orange.min.css +0 -1
  170. package/BoilerPlate/Documents/public/css/skin/skin-pink.css +0 -71
  171. package/BoilerPlate/Documents/public/css/skin/skin-pink.css.map +0 -10
  172. package/BoilerPlate/Documents/public/css/skin/skin-pink.min.css +0 -1
  173. package/BoilerPlate/Documents/public/css/skin/skin-purple.css +0 -71
  174. package/BoilerPlate/Documents/public/css/skin/skin-purple.css.map +0 -10
  175. package/BoilerPlate/Documents/public/css/skin/skin-purple.min.css +0 -1
  176. package/BoilerPlate/Documents/public/css/skin/skin-red.css +0 -71
  177. package/BoilerPlate/Documents/public/css/skin/skin-red.css.map +0 -10
  178. package/BoilerPlate/Documents/public/css/skin/skin-red.min.css +0 -1
  179. package/BoilerPlate/Documents/public/css/skin/skin-teal.css +0 -71
  180. package/BoilerPlate/Documents/public/css/skin/skin-teal.css.map +0 -10
  181. package/BoilerPlate/Documents/public/css/skin/skin-teal.min.css +0 -1
  182. package/BoilerPlate/Documents/public/css/skin/skin-yellow.css +0 -71
  183. package/BoilerPlate/Documents/public/css/skin/skin-yellow.css.map +0 -10
  184. package/BoilerPlate/Documents/public/css/skin/skin-yellow.min.css +0 -1
  185. package/BoilerPlate/Documents/public/css/theDocs/_alerts.scss +0 -49
  186. package/BoilerPlate/Documents/public/css/theDocs/_banner.scss +0 -225
  187. package/BoilerPlate/Documents/public/css/theDocs/_blog.scss +0 -240
  188. package/BoilerPlate/Documents/public/css/theDocs/_breadcrumb.scss +0 -10
  189. package/BoilerPlate/Documents/public/css/theDocs/_buttons.scss +0 -143
  190. package/BoilerPlate/Documents/public/css/theDocs/_carousel.scss +0 -92
  191. package/BoilerPlate/Documents/public/css/theDocs/_code.scss +0 -372
  192. package/BoilerPlate/Documents/public/css/theDocs/_color.scss +0 -38
  193. package/BoilerPlate/Documents/public/css/theDocs/_content.scss +0 -108
  194. package/BoilerPlate/Documents/public/css/theDocs/_faq.scss +0 -82
  195. package/BoilerPlate/Documents/public/css/theDocs/_files.scss +0 -137
  196. package/BoilerPlate/Documents/public/css/theDocs/_footer.scss +0 -82
  197. package/BoilerPlate/Documents/public/css/theDocs/_form.scss +0 -24
  198. package/BoilerPlate/Documents/public/css/theDocs/_header.scss +0 -374
  199. package/BoilerPlate/Documents/public/css/theDocs/_jumbotron.scss +0 -150
  200. package/BoilerPlate/Documents/public/css/theDocs/_labels.scss +0 -23
  201. package/BoilerPlate/Documents/public/css/theDocs/_media.scss +0 -24
  202. package/BoilerPlate/Documents/public/css/theDocs/_mixins.scss +0 -66
  203. package/BoilerPlate/Documents/public/css/theDocs/_pagination.scss +0 -75
  204. package/BoilerPlate/Documents/public/css/theDocs/_promo.scss +0 -112
  205. package/BoilerPlate/Documents/public/css/theDocs/_requirements.scss +0 -53
  206. package/BoilerPlate/Documents/public/css/theDocs/_sidebar.scss +0 -666
  207. package/BoilerPlate/Documents/public/css/theDocs/_step.scss +0 -161
  208. package/BoilerPlate/Documents/public/css/theDocs/_tab.scss +0 -105
  209. package/BoilerPlate/Documents/public/css/theDocs/_tables.scss +0 -106
  210. package/BoilerPlate/Documents/public/css/theDocs/_toc.scss +0 -78
  211. package/BoilerPlate/Documents/public/css/theDocs/_typography.scss +0 -282
  212. package/BoilerPlate/Documents/public/css/theDocs/_variables.scss +0 -98
  213. package/BoilerPlate/Documents/public/css/theDocs/_views.scss +0 -215
  214. package/BoilerPlate/Documents/public/css/theDocs/skins/_skin.scss +0 -76
  215. package/BoilerPlate/Documents/public/css/theDocs/skins/skin-blue.scss +0 -3
  216. package/BoilerPlate/Documents/public/css/theDocs/skins/skin-brown.scss +0 -3
  217. package/BoilerPlate/Documents/public/css/theDocs/skins/skin-cyan.scss +0 -3
  218. package/BoilerPlate/Documents/public/css/theDocs/skins/skin-dark.scss +0 -3
  219. package/BoilerPlate/Documents/public/css/theDocs/skins/skin-gray.scss +0 -3
  220. package/BoilerPlate/Documents/public/css/theDocs/skins/skin-green.scss +0 -3
  221. package/BoilerPlate/Documents/public/css/theDocs/skins/skin-orange.scss +0 -3
  222. package/BoilerPlate/Documents/public/css/theDocs/skins/skin-pink.scss +0 -3
  223. package/BoilerPlate/Documents/public/css/theDocs/skins/skin-purple.scss +0 -3
  224. package/BoilerPlate/Documents/public/css/theDocs/skins/skin-red.scss +0 -3
  225. package/BoilerPlate/Documents/public/css/theDocs/skins/skin-teal.scss +0 -3
  226. package/BoilerPlate/Documents/public/css/theDocs/skins/skin-yellow.scss +0 -3
  227. package/BoilerPlate/Documents/public/css/theDocs.all.min.css +0 -24
  228. package/BoilerPlate/Documents/public/css/theDocs.css +0 -3945
  229. package/BoilerPlate/Documents/public/css/theDocs.css.map +0 -38
  230. package/BoilerPlate/Documents/public/css/theDocs.scss +0 -70
  231. package/BoilerPlate/Documents/public/fonts/FontAwesome.otf +0 -0
  232. package/BoilerPlate/Documents/public/fonts/fontawesome-webfont.eot +0 -0
  233. package/BoilerPlate/Documents/public/fonts/fontawesome-webfont.svg +0 -2671
  234. package/BoilerPlate/Documents/public/fonts/fontawesome-webfont.ttf +0 -0
  235. package/BoilerPlate/Documents/public/fonts/fontawesome-webfont.woff +0 -0
  236. package/BoilerPlate/Documents/public/fonts/fontawesome-webfont.woff2 +0 -0
  237. package/BoilerPlate/Documents/public/fonts/glyphicons-halflings-regular.eot +0 -0
  238. package/BoilerPlate/Documents/public/fonts/glyphicons-halflings-regular.svg +0 -288
  239. package/BoilerPlate/Documents/public/fonts/glyphicons-halflings-regular.ttf +0 -0
  240. package/BoilerPlate/Documents/public/fonts/glyphicons-halflings-regular.woff +0 -0
  241. package/BoilerPlate/Documents/public/fonts/glyphicons-halflings-regular.woff2 +0 -0
  242. package/BoilerPlate/Documents/public/img/apple-touch-icon-114x114.png +0 -0
  243. package/BoilerPlate/Documents/public/img/apple-touch-icon-72x72.png +0 -0
  244. package/BoilerPlate/Documents/public/img/apple-touch-icon.png +0 -0
  245. package/BoilerPlate/Documents/public/img/arrow-circle-down.svg +0 -1
  246. package/BoilerPlate/Documents/public/img/arrow-circle-right.svg +0 -1
  247. package/BoilerPlate/Documents/public/img/atlassian.svg +0 -1
  248. package/BoilerPlate/Documents/public/img/avatar-1.jpg +0 -0
  249. package/BoilerPlate/Documents/public/img/banner-default.png +0 -0
  250. package/BoilerPlate/Documents/public/img/banner-full-height.png +0 -0
  251. package/BoilerPlate/Documents/public/img/banner-lg.png +0 -0
  252. package/BoilerPlate/Documents/public/img/banner-sample1.png +0 -0
  253. package/BoilerPlate/Documents/public/img/banner-sample2.png +0 -0
  254. package/BoilerPlate/Documents/public/img/banner-sample3.png +0 -0
  255. package/BoilerPlate/Documents/public/img/banner-sm.png +0 -0
  256. package/BoilerPlate/Documents/public/img/banner.jpg +0 -0
  257. package/BoilerPlate/Documents/public/img/banner1.jpg +0 -0
  258. package/BoilerPlate/Documents/public/img/banner2.jpg +0 -0
  259. package/BoilerPlate/Documents/public/img/banner3.jpg +0 -0
  260. package/BoilerPlate/Documents/public/img/banner4.png +0 -0
  261. package/BoilerPlate/Documents/public/img/banner5.png +0 -0
  262. package/BoilerPlate/Documents/public/img/check-circle.svg +0 -1
  263. package/BoilerPlate/Documents/public/img/chevron-circle-right.svg +0 -1
  264. package/BoilerPlate/Documents/public/img/circle-with-minus.svg +0 -1
  265. package/BoilerPlate/Documents/public/img/circle-with-plus.svg +0 -1
  266. package/BoilerPlate/Documents/public/img/cloud.svg +0 -1
  267. package/BoilerPlate/Documents/public/img/conference-image-1.jpg +0 -0
  268. package/BoilerPlate/Documents/public/img/conference-image-2.jpg +0 -0
  269. package/BoilerPlate/Documents/public/img/conference-image-3.jpg +0 -0
  270. package/BoilerPlate/Documents/public/img/edward.jpg +0 -0
  271. package/BoilerPlate/Documents/public/img/elderwand-logo.png +0 -0
  272. package/BoilerPlate/Documents/public/img/email.svg +0 -1
  273. package/BoilerPlate/Documents/public/img/envato.svg +0 -1
  274. package/BoilerPlate/Documents/public/img/facebook.svg +0 -1
  275. package/BoilerPlate/Documents/public/img/favicon.png +0 -0
  276. package/BoilerPlate/Documents/public/img/heart.svg +0 -1
  277. package/BoilerPlate/Documents/public/img/images.svg +0 -1
  278. package/BoilerPlate/Documents/public/img/index.png +0 -0
  279. package/BoilerPlate/Documents/public/img/jacob.jpg +0 -0
  280. package/BoilerPlate/Documents/public/img/jquery.svg +0 -1
  281. package/BoilerPlate/Documents/public/img/jumbotron-bg.png +0 -0
  282. package/BoilerPlate/Documents/public/img/layout-single1.png +0 -0
  283. package/BoilerPlate/Documents/public/img/layout-single2.png +0 -0
  284. package/BoilerPlate/Documents/public/img/layout-single3.png +0 -0
  285. package/BoilerPlate/Documents/public/img/location-pin.svg +0 -1
  286. package/BoilerPlate/Documents/public/img/lucy.jpg +0 -0
  287. package/BoilerPlate/Documents/public/img/mamtas-logo-simple.png +0 -0
  288. package/BoilerPlate/Documents/public/img/music.svg +0 -1
  289. package/BoilerPlate/Documents/public/img/nathan.jpg +0 -0
  290. package/BoilerPlate/Documents/public/img/navbar-dark.png +0 -0
  291. package/BoilerPlate/Documents/public/img/navbar-default.png +0 -0
  292. package/BoilerPlate/Documents/public/img/navbar-fullwidth.png +0 -0
  293. package/BoilerPlate/Documents/public/img/navbar-lg.png +0 -0
  294. package/BoilerPlate/Documents/public/img/navbar-light.png +0 -0
  295. package/BoilerPlate/Documents/public/img/navbar-sm.png +0 -0
  296. package/BoilerPlate/Documents/public/img/phone.svg +0 -1
  297. package/BoilerPlate/Documents/public/img/placeholder-1900.png +0 -0
  298. package/BoilerPlate/Documents/public/img/placeholder.png +0 -0
  299. package/BoilerPlate/Documents/public/img/sidebar-default.png +0 -0
  300. package/BoilerPlate/Documents/public/img/sidebar-icon.png +0 -0
  301. package/BoilerPlate/Documents/public/img/sidebar-line.png +0 -0
  302. package/BoilerPlate/Documents/public/img/skin-blue.png +0 -0
  303. package/BoilerPlate/Documents/public/img/skin-brown.png +0 -0
  304. package/BoilerPlate/Documents/public/img/skin-cyan.png +0 -0
  305. package/BoilerPlate/Documents/public/img/skin-dark.png +0 -0
  306. package/BoilerPlate/Documents/public/img/skin-default.png +0 -0
  307. package/BoilerPlate/Documents/public/img/skin-gray.png +0 -0
  308. package/BoilerPlate/Documents/public/img/skin-green.png +0 -0
  309. package/BoilerPlate/Documents/public/img/skin-orange.png +0 -0
  310. package/BoilerPlate/Documents/public/img/skin-pink.png +0 -0
  311. package/BoilerPlate/Documents/public/img/skin-purple.png +0 -0
  312. package/BoilerPlate/Documents/public/img/skin-red.png +0 -0
  313. package/BoilerPlate/Documents/public/img/skin-teal.png +0 -0
  314. package/BoilerPlate/Documents/public/img/skin-yellow.png +0 -0
  315. package/BoilerPlate/Documents/public/img/skype.svg +0 -1
  316. package/BoilerPlate/Documents/public/img/step1.png +0 -0
  317. package/BoilerPlate/Documents/public/img/step2.png +0 -0
  318. package/BoilerPlate/Documents/public/img/step3.png +0 -0
  319. package/BoilerPlate/Documents/public/img/step4.png +0 -0
  320. package/BoilerPlate/Documents/public/img/tumblr.svg +0 -1
  321. package/BoilerPlate/Documents/public/img/twitter.svg +0 -1
  322. package/BoilerPlate/Documents/public/img/video-dawn.mp4 +0 -0
  323. package/BoilerPlate/Documents/public/img/video.svg +0 -1
  324. package/BoilerPlate/Documents/public/js/custom.js +0 -26
  325. package/BoilerPlate/Documents/public/js/default.js +0 -1
  326. package/BoilerPlate/Documents/public/js/theDocs.all.min.js +0 -102
  327. package/BoilerPlate/Documents/public/js/theDocs.js +0 -482
  328. package/BoilerPlate/Documents/public/js/theDocs.min.js +0 -6
  329. package/BoilerPlate/Documents/public/js/vendor/bootstrap.carousel.js +0 -1
  330. package/BoilerPlate/Documents/public/js/vendor/bootstrap.collapse.js +0 -1
  331. package/BoilerPlate/Documents/public/js/vendor/bootstrap.dropdown.js +0 -1
  332. package/BoilerPlate/Documents/public/js/vendor/bootstrap.tab.js +0 -1
  333. package/BoilerPlate/Documents/public/js/vendor/bootstrap.transition.js +0 -1
  334. package/BoilerPlate/Documents/public/js/vendor/jquery-1.11.3.min.js +0 -4
  335. package/BoilerPlate/Documents/public/js/vendor/jquery.drawsvg.js +0 -1
  336. package/BoilerPlate/Documents/public/js/vendor/jquery.mobile.custom.min.js +0 -1
  337. package/BoilerPlate/Documents/public/js/vendor/webfontloader.js +0 -1
  338. package/BoilerPlate/Documents/public/sample.html +0 -530
  339. package/BoilerPlate/Documents/public/style.css +0 -10
  340. package/BoilerPlate/Documents/public/vendors/bootstrap/css/bootstrap-theme.css +0 -587
  341. package/BoilerPlate/Documents/public/vendors/bootstrap/css/bootstrap-theme.css.map +0 -1
  342. package/BoilerPlate/Documents/public/vendors/bootstrap/css/bootstrap-theme.min.css +0 -6
  343. package/BoilerPlate/Documents/public/vendors/bootstrap/css/bootstrap-theme.min.css.map +0 -1
  344. package/BoilerPlate/Documents/public/vendors/bootstrap/css/bootstrap.css +0 -6757
  345. package/BoilerPlate/Documents/public/vendors/bootstrap/css/bootstrap.css.map +0 -1
  346. package/BoilerPlate/Documents/public/vendors/bootstrap/css/bootstrap.min.css +0 -6
  347. package/BoilerPlate/Documents/public/vendors/bootstrap/css/bootstrap.min.css.map +0 -1
  348. package/BoilerPlate/Documents/public/vendors/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
  349. package/BoilerPlate/Documents/public/vendors/bootstrap/fonts/glyphicons-halflings-regular.svg +0 -288
  350. package/BoilerPlate/Documents/public/vendors/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
  351. package/BoilerPlate/Documents/public/vendors/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
  352. package/BoilerPlate/Documents/public/vendors/bootstrap/fonts/glyphicons-halflings-regular.woff2 +0 -0
  353. package/BoilerPlate/Documents/public/vendors/bootstrap/js/bootstrap.js +0 -2377
  354. package/BoilerPlate/Documents/public/vendors/bootstrap/js/bootstrap.min.js +0 -7
  355. package/BoilerPlate/Documents/public/vendors/bootstrap/js/npm.js +0 -13
  356. package/BoilerPlate/Documents/public/vendors/clipboard.js/clipboard.js +0 -778
  357. package/BoilerPlate/Documents/public/vendors/clipboard.js/clipboard.min.js +0 -7
  358. package/BoilerPlate/Documents/public/vendors/fitvids/jquery.fitvids.js +0 -11
  359. package/BoilerPlate/Documents/public/vendors/font-awesome/css/font-awesome.css +0 -2337
  360. package/BoilerPlate/Documents/public/vendors/font-awesome/css/font-awesome.min.css +0 -4
  361. package/BoilerPlate/Documents/public/vendors/font-awesome/fonts/FontAwesome.otf +0 -0
  362. package/BoilerPlate/Documents/public/vendors/font-awesome/fonts/fontawesome-webfont.eot +0 -0
  363. package/BoilerPlate/Documents/public/vendors/font-awesome/fonts/fontawesome-webfont.svg +0 -2671
  364. package/BoilerPlate/Documents/public/vendors/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
  365. package/BoilerPlate/Documents/public/vendors/font-awesome/fonts/fontawesome-webfont.woff +0 -0
  366. package/BoilerPlate/Documents/public/vendors/font-awesome/fonts/fontawesome-webfont.woff2 +0 -0
  367. package/BoilerPlate/Documents/public/vendors/font-awesome/less/animated.less +0 -34
  368. package/BoilerPlate/Documents/public/vendors/font-awesome/less/bordered-pulled.less +0 -25
  369. package/BoilerPlate/Documents/public/vendors/font-awesome/less/core.less +0 -12
  370. package/BoilerPlate/Documents/public/vendors/font-awesome/less/fixed-width.less +0 -6
  371. package/BoilerPlate/Documents/public/vendors/font-awesome/less/font-awesome.less +0 -18
  372. package/BoilerPlate/Documents/public/vendors/font-awesome/less/icons.less +0 -789
  373. package/BoilerPlate/Documents/public/vendors/font-awesome/less/larger.less +0 -13
  374. package/BoilerPlate/Documents/public/vendors/font-awesome/less/list.less +0 -19
  375. package/BoilerPlate/Documents/public/vendors/font-awesome/less/mixins.less +0 -60
  376. package/BoilerPlate/Documents/public/vendors/font-awesome/less/path.less +0 -15
  377. package/BoilerPlate/Documents/public/vendors/font-awesome/less/rotated-flipped.less +0 -20
  378. package/BoilerPlate/Documents/public/vendors/font-awesome/less/screen-reader.less +0 -5
  379. package/BoilerPlate/Documents/public/vendors/font-awesome/less/stacked.less +0 -20
  380. package/BoilerPlate/Documents/public/vendors/font-awesome/less/variables.less +0 -800
  381. package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_animated.scss +0 -34
  382. package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_bordered-pulled.scss +0 -25
  383. package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_core.scss +0 -12
  384. package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_fixed-width.scss +0 -6
  385. package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_icons.scss +0 -789
  386. package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_larger.scss +0 -13
  387. package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_list.scss +0 -19
  388. package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_mixins.scss +0 -60
  389. package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_path.scss +0 -15
  390. package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_rotated-flipped.scss +0 -20
  391. package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_screen-reader.scss +0 -5
  392. package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_stacked.scss +0 -20
  393. package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_variables.scss +0 -800
  394. package/BoilerPlate/Documents/public/vendors/font-awesome/scss/font-awesome.scss +0 -18
  395. package/BoilerPlate/Documents/public/vendors/jquery/jquery.min.js +0 -4
  396. package/BoilerPlate/Documents/public/vendors/lity/lity.css +0 -200
  397. package/BoilerPlate/Documents/public/vendors/lity/lity.js +0 -637
  398. package/BoilerPlate/Documents/public/vendors/lity/lity.min.css +0 -3
  399. package/BoilerPlate/Documents/public/vendors/lity/lity.min.js +0 -4
  400. package/BoilerPlate/Documents/public/vendors/matchHeight.min.js +0 -11
  401. package/BoilerPlate/Documents/public/vendors/perfect-scrollbar/css/perfect-scrollbar.css +0 -113
  402. package/BoilerPlate/Documents/public/vendors/perfect-scrollbar/css/perfect-scrollbar.min.css +0 -2
  403. package/BoilerPlate/Documents/public/vendors/perfect-scrollbar/js/perfect-scrollbar.jquery.js +0 -1580
  404. package/BoilerPlate/Documents/public/vendors/perfect-scrollbar/js/perfect-scrollbar.jquery.min.js +0 -2
  405. package/BoilerPlate/Documents/public/vendors/perfect-scrollbar/js/perfect-scrollbar.js +0 -1553
  406. package/BoilerPlate/Documents/public/vendors/perfect-scrollbar/js/perfect-scrollbar.min.js +0 -2
  407. package/BoilerPlate/Documents/public/vendors/prism/prism.css +0 -7
  408. package/BoilerPlate/Documents/public/vendors/prism/prism.js +0 -54
  409. package/BoilerPlate/Documents/server.js +0 -63
  410. package/BoilerPlate/Documents/tempUploads/068f2b77c0e0723b97909b2ffa438fe6.pdf +0 -0
  411. package/BoilerPlate/Documents/tempUploads/6443f8fd5d507b5a5f76829962fc2dc0.docx +0 -0
  412. package/BoilerPlate/Documents/tempUploads/7e4560af2cd6cae130bdb79fecaa6437.pdf +0 -0
  413. package/BoilerPlate/Documents/tempUploads/84b6ad7e0deefc348cfd582c9715ec1d.pdf +0 -0
  414. package/BoilerPlate/Documents/tempUploads/a894549ed062ada5f48f364a236a7e76.png +0 -0
  415. package/BoilerPlate/Documents/tempUploads/c2727b94bc909b118b25ae35f0897713.png +0 -0
  416. package/BoilerPlate/Documents/tempUploads/c588a76c8b0c4b76df2e36bd602a8821.docx +0 -0
  417. package/BoilerPlate/Documents/tempUploads/d6476c43a03950899e6db91c95dbc8aa.docx +0 -0
  418. package/BoilerPlate/Documents/tempUploads/dc4ffdc0a703353e0280384afc6ad082.png +0 -0
  419. package/BoilerPlate/Documents/test/helper.js +0 -27
  420. package/BoilerPlate/Documents/test/test-articles.js +0 -176
  421. package/BoilerPlate/Documents/test/test-users.js +0 -106
  422. package/BoilerPlate/Documents/uploads/section/5ad9bb9853017c217c6673d5/0cb1f166cbb6b46ffc630cb1c86db0a1.png +0 -0
  423. package/BoilerPlate/Documents/uploads/section/5ad9bb9853017c217c6673d5/37fbc499e5eea091ab7215855bf7918b.png +0 -0
  424. package/BoilerPlate/Documents/uploads/section/5ad9bb9853017c217c6673d5/4b0d6e11c87b31cc6c32e18be5a49b6b.pdf +0 -0
  425. package/BoilerPlate/Documents/uploads/section/5ad9bb9853017c217c6673d5/d4248bccecc0f55dd2fe7cd388c4c1ce.docx +0 -0
  426. package/BoilerPlate/Documents/uploads/section/5ad9bbd853017c217c6673d8/7c7b0d7f03359c38e3411ec448bdc746.png +0 -0
  427. package/BoilerPlate/Documents/uploads/section/5ad9bbd853017c217c6673d8/8c7eeb092084ee8349f12ceb7e6dab2d.docx +0 -0
  428. package/BoilerPlate/Documents/uploads/section/5ad9bbd853017c217c6673d8/b512a8558523894f0d9292f39dcd9d82.pdf +0 -0
  429. package/BoilerPlate/Documents/uploads/section/5ad9bc111b67922eb0f547d5/06cdca751d7c5897179af1bb956e13d3.docx +0 -0
  430. package/BoilerPlate/Documents/uploads/section/5ad9bc111b67922eb0f547d5/4fe0695295a41c9e3e5af0d2fd52bbae.png +0 -0
  431. package/BoilerPlate/Documents/uploads/section/5ad9c7ce673a50173865614b/1c68ca7ae23099cd139801766ccec600.docx +0 -0
  432. package/BoilerPlate/Documents/uploads/section/5ad9c7ce673a50173865614b/7d7d49834eea7899d77a29dda1d25bf4.pdf +0 -0
  433. package/BoilerPlate/Documents/uploads/section/5ad9c826673a50173865614e/301398c02f647d1e1804d48233e9e7e0.pdf +0 -0
  434. package/BoilerPlate/Documents/uploads/section/5ad9c826673a50173865614e/c9ca2431eed90529a633f88c6781e686.docx +0 -0
  435. package/BoilerPlate/Documents/uploads/section/5ad9c85f673a501738656153/71b1d92caefe43821426d139e6c931d1.pdf +0 -0
  436. package/BoilerPlate/Documents/uploads/section/5ad9c85f673a501738656153/a0735aa1e0befd14449b26063c112d46.docx +0 -0
  437. package/BoilerPlate/Documents/uploads/section/5ad9ce22f534442218fb8016/31724098865f19fd968d6167736bd388.docx +0 -0
  438. package/BoilerPlate/Documents/uploads/section/5ad9d714f534442218fb801b/a71e1f795a7c2f260ccbd877e9e03b17.docx +0 -0
  439. package/BoilerPlate/Documents/uploads/section/5ad9d755f534442218fb801e/c23154466cfcbb8aa9101509cc990962.docx +0 -0
  440. package/BoilerPlate/Documents/uploads/section/5ad9d816f534442218fb8021/e90f3adde177c831dd96d8fcf2f6bf17.docx +0 -0
  441. package/BoilerPlate/Documents/uploads/section/5ad9d83bf534442218fb8024/11a310205cd7c1b3f0a53cd4a3e1cd91.png +0 -0
  442. package/BoilerPlate/Documents/uploads/section/5ad9d83bf534442218fb8024/4c45d0286d8b0ae23fe1ccfd2d0f6b52.pdf +0 -0
  443. package/BoilerPlate/Documents/uploads/section/5ad9d83bf534442218fb8024/6dd38b8628ef60ea09e982c375720d94.docx +0 -0
  444. package/dump.rdb +0 -0
@@ -1,3945 +0,0 @@
1
- @charset "UTF-8";
2
- /*
3
- * TheDocs v1.4.0 (http://thetheme.io/thedocs)
4
- * Copyright 2017 ShaMSofT
5
- * Licensed under the Themeforest Standard Licenses
6
-
7
- ... Table of content ...
8
- ------------------------
9
- 01. Content
10
- 02. Header
11
- 03. Footer
12
- 04. Sidebar
13
- 05. Typography
14
- 06. Labels
15
- 07. Alerts
16
- 08. Buttons
17
- 09. Tables
18
- 10. Table of contents
19
- 11. FAQ
20
- 12. Tab
21
- 13. Code
22
- 14. Steps
23
- 15. Views
24
- 16. Color palette
25
- 17. Promo
26
- 18. Files
27
- 19. Media
28
- 20. Banner
29
- 21. Carousel
30
- 22. Jumbotron
31
- 23. Breadcrumbs
32
- 24. Pagination
33
- 25. Requirements
34
- 26. Blog
35
- ------------------------
36
- */
37
- /*------------------------------------
38
- - Content
39
- ------------------------------------*/
40
- body[data-spy] {
41
- position: relative;
42
- }
43
-
44
- .main-content {
45
- padding: 50px 50px 50px 0;
46
- font-size: 16px;
47
- line-height: 27px;
48
- }
49
-
50
- .main-content.col-md-12 {
51
- padding-right: 0;
52
- }
53
-
54
- .main-content > header {
55
- margin-bottom: 20px;
56
- border-bottom: 1px solid #f1f1f1;
57
- }
58
-
59
- .main-content > header > p:last-child {
60
- margin-bottom: 30px;
61
- }
62
-
63
- .main-content > h1,
64
- .main-content > header h1 {
65
- margin-top: 0;
66
- }
67
-
68
- .main-content > section {
69
- padding-bottom: 50px;
70
- }
71
-
72
- .main-content > section:last-child {
73
- border-bottom: 0;
74
- padding-bottom: 0;
75
- }
76
-
77
- .sidebar + .main-content {
78
- padding-left: 50px;
79
- padding-right: 0;
80
- }
81
-
82
- .container-fluid .main-content {
83
- padding-left: 30px;
84
- }
85
-
86
- .container-fluid .sidebar + .main-content {
87
- padding-right: 30px;
88
- }
89
-
90
- .container-fluid .main-content.col-md-12 {
91
- padding-left: 30px;
92
- padding-right: 30px;
93
- }
94
-
95
- .container-fluid .sidebar {
96
- padding-left: 30px;
97
- }
98
-
99
- @media screen and (max-width: 991px) {
100
- .main-content {
101
- padding: 50px 30px 50px 0;
102
- }
103
- .sidebar + .main-content {
104
- padding-left: 30px;
105
- }
106
- }
107
-
108
- @media screen and (max-width: 767px) {
109
- .main-content {
110
- padding: 30px 20px !important;
111
- }
112
- .container-fluid .main-content {
113
- padding-left: 20px;
114
- }
115
- .container-fluid .sidebar + .main-content {
116
- padding-right: 20px;
117
- }
118
- .container-fluid .main-content.col-md-12 {
119
- padding-left: 20px;
120
- padding-right: 20px;
121
- }
122
- .container-fluid .sidebar {
123
- padding-left: 20px;
124
- }
125
- }
126
-
127
- /*------------------------------------
128
- - Header
129
- ------------------------------------*/
130
- .site-header .navbar {
131
- background-color: #5cc7b2;
132
- padding: 20px 15px;
133
- margin: 0;
134
- border: none;
135
- border-radius: 0;
136
- -webkit-transition: 0.2s ease;
137
- -o-transition: 0.2s ease;
138
- transition: 0.2s ease;
139
- }
140
-
141
- .site-header .navbar-brand {
142
- display: -webkit-inline-box;
143
- display: -webkit-inline-flex;
144
- display: -ms-inline-flexbox;
145
- display: inline-flex;
146
- -webkit-box-align: center;
147
- -webkit-align-items: center;
148
- -ms-flex-align: center;
149
- align-items: center;
150
- padding-top: 0;
151
- padding-bottom: 0;
152
- float: none;
153
- }
154
-
155
- .site-header .navbar-brand > img {
156
- display: inline-block;
157
- max-height: 36px;
158
- -webkit-transition: 0.2s ease;
159
- -o-transition: 0.2s ease;
160
- transition: 0.2s ease;
161
- }
162
-
163
- .site-header .navbar-brand .force-middle {
164
- display: inline-block;
165
- vertical-align: middle;
166
- height: 100%;
167
- }
168
-
169
- .site-header.navbar-sm .navbar {
170
- padding-top: 8px;
171
- padding-bottom: 8px;
172
- }
173
-
174
- .site-header.navbar-sm .navbar-brand > img {
175
- max-height: 24px;
176
- }
177
-
178
- .site-header.navbar-lg .navbar {
179
- padding-top: 32px;
180
- padding-bottom: 32px;
181
- }
182
-
183
- .site-header.navbar-lg .navbar-brand > img {
184
- max-height: 48px;
185
- }
186
-
187
- .site-header.sticky .navbar {
188
- position: fixed;
189
- top: 0;
190
- left: 0;
191
- right: 0;
192
- z-index: 99;
193
- -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
194
- box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
195
- }
196
-
197
- .site-header.navbar-fullwidth .navbar .container {
198
- width: 100%;
199
- margin: 0;
200
- }
201
-
202
- .site-header.navbar-transparent {
203
- padding-top: 0;
204
- }
205
-
206
- .site-header.navbar-transparent .navbar {
207
- background-color: transparent;
208
- -webkit-box-shadow: none !important;
209
- box-shadow: none !important;
210
- position: absolute;
211
- top: 0;
212
- left: 0;
213
- right: 0;
214
- z-index: 99;
215
- }
216
-
217
- .navbar-default .navbar-brand, .navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover {
218
- color: #ffffff;
219
- font-size: 25px;
220
- font-weight: 300;
221
- }
222
-
223
- .navbar-default .navbar-nav > li > a {
224
- color: rgba(255, 255, 255, 0.8);
225
- font-weight: 500;
226
- text-transform: uppercase;
227
- letter-spacing: 1px;
228
- -webkit-transition: .2s ease;
229
- -o-transition: .2s ease;
230
- transition: .2s ease;
231
- }
232
-
233
- .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
234
- color: #ffffff;
235
- }
236
-
237
- .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
238
- color: #ffffff;
239
- background-color: transparent;
240
- font-weight: 700;
241
- }
242
-
243
- .navbar-default .navbar-nav > .open > a {
244
- color: #ffffff;
245
- background-color: transparent;
246
- -webkit-transition: none;
247
- -o-transition: none;
248
- transition: none;
249
- }
250
-
251
- .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
252
- color: #777;
253
- background-color: #ffffff;
254
- }
255
-
256
- .navbar-default .navbar-nav > .hero > a {
257
- background-color: rgba(255, 255, 255, 0.1);
258
- border-radius: 3px;
259
- -webkit-transition: 0.3s linear;
260
- -o-transition: 0.3s linear;
261
- transition: 0.3s linear;
262
- }
263
-
264
- .navbar-default .navbar-nav > .hero > a:focus, .navbar-default .navbar-nav > .hero > a:hover {
265
- color: #ffffff;
266
- background-color: rgba(255, 255, 255, 0.25);
267
- }
268
-
269
- .nav .dropdown-menu {
270
- -webkit-box-shadow: none;
271
- box-shadow: none;
272
- border-color: #e7e7e7;
273
- border-top: none;
274
- }
275
-
276
- .nav .dropdown-menu > li > a {
277
- padding: 8px 20px;
278
- }
279
-
280
- .nav .dropdown-menu > li > a:focus, .nav .dropdown-menu > li > a:hover {
281
- background-color: #f5f5f5;
282
- }
283
-
284
- .navbar-default .navbar-toggle {
285
- margin: 0;
286
- padding: 7px 11px;
287
- border: none;
288
- border-radius: 2px;
289
- color: rgba(255, 255, 255, 0.8);
290
- font-size: 20px;
291
- }
292
-
293
- .navbar-default .navbar-toggle:hover {
294
- color: #ffffff;
295
- background-color: rgba(255, 255, 255, 0.2);
296
- }
297
-
298
- .navbar-default .navbar-toggle:hover .icon-bar {
299
- background-color: #ffffff;
300
- }
301
-
302
- .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:active {
303
- background-color: transparent;
304
- }
305
-
306
- .navbar-default .navbar-toggle.for-sidebar {
307
- float: left;
308
- margin-top: 3px;
309
- padding: 14px 10px;
310
- }
311
-
312
- .navbar-default .navbar-toggle .fa {
313
- vertical-align: top;
314
- }
315
-
316
- .navbar-default .navbar-toggle .icon-bar {
317
- background-color: rgba(255, 255, 255, 0.8);
318
- }
319
-
320
- .navbar-default .navbar-collapse,
321
- .navbar-default .navbar-form {
322
- border-color: rgba(255, 255, 255, 0.1);
323
- }
324
-
325
- .navbar-default.navbar-light {
326
- background-color: #ffffff;
327
- -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
328
- box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
329
- }
330
-
331
- .navbar-default.navbar-light li > a {
332
- color: #777;
333
- }
334
-
335
- .navbar-default.navbar-light li > a:focus, .navbar-default.navbar-light li > a:hover {
336
- color: #5cc7b2;
337
- }
338
-
339
- .navbar-default.navbar-light .active > a, .navbar-default.navbar-light .active > a:focus, .navbar-default.navbar-light .active > a:hover {
340
- color: #5cc7b2;
341
- }
342
-
343
- .navbar-default.navbar-light .open > a {
344
- color: #5cc7b2;
345
- background-color: #fcfcfc !important;
346
- }
347
-
348
- .navbar-default.navbar-light .open > a:focus, .navbar-default.navbar-light .open > a:hover {
349
- color: #5cc7b2;
350
- }
351
-
352
- .navbar-default.navbar-light .dropdown-menu {
353
- background-color: #fcfcfc;
354
- }
355
-
356
- .navbar-default.navbar-light .dropdown-menu a:hover {
357
- color: #333;
358
- }
359
-
360
- .navbar-default.navbar-light .hero > a {
361
- background-color: rgba(92, 199, 178, 0.8);
362
- color: #ffffff;
363
- }
364
-
365
- .navbar-default.navbar-light .hero > a:focus, .navbar-default.navbar-light .hero > a:hover {
366
- color: #ffffff;
367
- background-color: rgba(92, 199, 178, 0.99);
368
- }
369
-
370
- .navbar-default.navbar-dark {
371
- background-color: #292929;
372
- }
373
-
374
- @media screen and (max-width: 991px) {
375
- .site-header .navbar {
376
- padding: 15px;
377
- }
378
- .navbar-brand {
379
- float: left;
380
- }
381
- .navbar-brand > img {
382
- max-height: 32px;
383
- }
384
- }
385
-
386
- @media screen and (max-width: 767px) {
387
- .site-header > .navbar {
388
- padding: 2px 15px 0 !important;
389
- }
390
- .navbar-default .navbar-brand {
391
- font-size: 22px;
392
- }
393
- .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
394
- color: rgba(255, 255, 255, 0.9);
395
- background-color: transparent;
396
- }
397
- .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
398
- color: #ffffff;
399
- font-weight: 500;
400
- }
401
- .navbar-default .navbar-nav .open .dropdown-menu > li > a {
402
- color: rgba(255, 255, 255, 0.9);
403
- }
404
- .navbar-default .navbar-toggle {
405
- margin-top: 3px;
406
- }
407
- .site-header .navbar-brand {
408
- display: -webkit-box;
409
- display: -webkit-flex;
410
- display: -ms-flexbox;
411
- display: flex;
412
- -webkit-box-pack: center;
413
- -webkit-justify-content: center;
414
- -ms-flex-pack: center;
415
- justify-content: center;
416
- text-align: center;
417
- }
418
- .site-header .navbar-brand > img {
419
- max-height: 20px !important;
420
- }
421
- .site-header.navbar-transparent .navbar-nav {
422
- background-color: #292929;
423
- }
424
- .navbar {
425
- position: fixed !important;
426
- top: 0 !important;
427
- left: 0 !important;
428
- right: 0 !important;
429
- z-index: 99 !important;
430
- -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2) !important;
431
- box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2) !important;
432
- background-color: #5cc7b2 !important;
433
- }
434
- }
435
-
436
- /*------------------------------------
437
- - Footer
438
- ------------------------------------*/
439
- .site-footer {
440
- position: relative;
441
- background-color: #f5f5f5;
442
- color: #777;
443
- padding: 30px 15px;
444
- }
445
-
446
- .site-footer div > p:last-child {
447
- margin-bottom: 0;
448
- }
449
-
450
- .site-footer .container,
451
- .site-footer .container-fluid {
452
- position: relative;
453
- }
454
-
455
- .site-footer #scroll-up {
456
- position: absolute;
457
- top: -47px;
458
- right: 0;
459
- color: #ccc;
460
- background-color: #f5f5f5;
461
- display: inline-block;
462
- width: 34px;
463
- height: 34px;
464
- border-radius: 100%;
465
- text-align: center;
466
- font-size: 21px;
467
- -webkit-transition: .2s ease;
468
- -o-transition: .2s ease;
469
- transition: .2s ease;
470
- }
471
-
472
- .site-footer #scroll-up:hover {
473
- color: #999;
474
- }
475
-
476
- .site-footer #scroll-up > .fa {
477
- vertical-align: top;
478
- }
479
-
480
- .footer-menu {
481
- list-style: none;
482
- margin: 0;
483
- padding: 0;
484
- text-align: right;
485
- }
486
-
487
- .footer-menu li {
488
- display: inline-block;
489
- padding: 0 8px;
490
- }
491
-
492
- .footer-menu a {
493
- color: rgba(125, 125, 125, 0.7);
494
- font-weight: 500;
495
- -webkit-transition: .2s ease;
496
- -o-transition: .2s ease;
497
- transition: .2s ease;
498
- }
499
-
500
- .footer-menu a:hover, .footer-menu a.active {
501
- color: #7d7d7d;
502
- text-decoration: none;
503
- }
504
-
505
- @media screen and (max-width: 767px) {
506
- .site-footer {
507
- text-align: center;
508
- }
509
- .footer-menu {
510
- text-align: center;
511
- margin-top: 20px;
512
- }
513
- }
514
-
515
- /*------------------------------------
516
- - Sidebar
517
- ------------------------------------*/
518
- .sidebar {
519
- padding: 50px 0 20px;
520
- }
521
-
522
- .sidenav {
523
- list-style: none;
524
- min-width: 180px;
525
- padding-left: 20px;
526
- padding-right: 20px;
527
- }
528
-
529
- .sidenav.nav > li > a {
530
- padding: 0;
531
- }
532
-
533
- .sidenav.nav > li > a:focus,
534
- .sidenav.nav > li > a:hover {
535
- background-color: transparent;
536
- }
537
-
538
- .sidenav a:focus {
539
- color: #777;
540
- }
541
-
542
- .sidenav ul {
543
- list-style: none;
544
- padding-left: 0;
545
- }
546
-
547
- .sidenav.dropable > li > ul,
548
- .sidenav .dropable ul {
549
- display: none;
550
- }
551
-
552
- .sidenav.dropable ul.open,
553
- .sidenav .dropable ul.open {
554
- display: block;
555
- }
556
-
557
- .sidenav.dropable a.active + ul,
558
- .sidenav.dropable .active > ul,
559
- .sidenav .dropable a.active + ul,
560
- .sidenav .dropable .active > ul {
561
- display: block;
562
- }
563
-
564
- .sidenav .dropable li {
565
- position: relative;
566
- }
567
-
568
- .sidenav .dropable .has-child::before {
569
- content: "\f0d7";
570
- display: inline-block;
571
- font-family: FontAwesome;
572
- font-size: 10px;
573
- position: absolute;
574
- -webkit-transform: translateX(-14px);
575
- -o-transform: translateX(-14px);
576
- transform: translateX(-14px);
577
- }
578
-
579
- .sidenav ul {
580
- padding-left: 24px;
581
- }
582
-
583
- .sidenav a {
584
- display: block;
585
- line-height: 30px;
586
- color: #777;
587
- -webkit-transition: .3s ease;
588
- -o-transition: .3s ease;
589
- transition: .3s ease;
590
- }
591
-
592
- .sidenav a.active, .sidenav a:hover {
593
- text-decoration: none;
594
- opacity: 1;
595
- color: #5cc7b2;
596
- }
597
-
598
- .sidenav a.active {
599
- font-weight: 400;
600
- }
601
-
602
- .sidenav > li > a {
603
- font-size: 16px;
604
- line-height: 36px;
605
- }
606
-
607
- .sidenav > li > a.active, .sidenav > li > a:hover {
608
- color: #5cc7b2;
609
- }
610
-
611
- .sidenav > li {
612
- position: relative;
613
- font-size: 16px;
614
- line-height: 36px;
615
- color: #777;
616
- }
617
-
618
- .sidenav > li > ul {
619
- padding-bottom: 20px;
620
- }
621
-
622
- .sidenav > li > ul.nav > li > a {
623
- padding: 0;
624
- }
625
-
626
- .sidenav > li > ul.nav > li > a:focus,
627
- .sidenav > li > ul.nav > li > a:hover {
628
- background-color: transparent;
629
- }
630
-
631
- .sidenav > li > ul:before {
632
- content: '';
633
- position: absolute;
634
- top: 36px;
635
- bottom: 20px;
636
- left: 0;
637
- border-left: 1px solid #ccc;
638
- }
639
-
640
- .sidenav > li > ul li.active a,
641
- .sidenav > li > ul a.active {
642
- position: relative;
643
- }
644
-
645
- .sidenav > li > ul li.active a:before,
646
- .sidenav > li > ul a.active:before {
647
- content: ' ';
648
- position: absolute;
649
- left: -26px;
650
- top: 12px;
651
- width: 6px;
652
- height: 6px;
653
- border-radius: 100%;
654
- background-color: #5cc7b2;
655
- }
656
-
657
- .sidenav > li li {
658
- font-size: 14px;
659
- line-height: 30px;
660
- }
661
-
662
- .sidenav ul li.active ul a:before {
663
- display: none !important;
664
- }
665
-
666
- .sidenav ul ul {
667
- display: block;
668
- }
669
-
670
- .sidenav ul ul li.active a:before,
671
- .sidenav ul ul a.active:before {
672
- display: none !important;
673
- }
674
-
675
- .sidenav .fa,
676
- .sidenav .glyphicon {
677
- margin-right: 4px;
678
- }
679
-
680
- .sidenav li.active > a {
681
- color: #5cc7b2;
682
- }
683
-
684
- .sidebar-line .sidenav > li > ul:before {
685
- display: none;
686
- }
687
-
688
- .sidebar-line .sidenav li.active > a,
689
- .sidebar-line .sidenav a.active {
690
- position: relative;
691
- }
692
-
693
- .sidebar-line .sidenav li.active > a:before,
694
- .sidebar-line .sidenav a.active:before {
695
- content: ' ';
696
- position: absolute;
697
- left: -10px;
698
- top: 5px;
699
- bottom: 5px;
700
- width: 1px;
701
- height: 20px;
702
- border-radius: 0;
703
- background-color: #5cc7b2;
704
- }
705
-
706
- .sidebar-line .sidenav > li.active > a:before,
707
- .sidebar-line .sidenav > li > a.active:before {
708
- height: 25px;
709
- width: 2px;
710
- }
711
-
712
- .sidebar-icon .sidenav > li > ul:before,
713
- .sidebar-icon .sidenav li.active a:before,
714
- .sidebar-icon .sidenav a.active:before {
715
- display: none;
716
- }
717
-
718
- .sidebar-boxed {
719
- background-color: #f5f5f5;
720
- padding-left: 0;
721
- padding-right: 0;
722
- width: 280px;
723
- padding-top: 100px;
724
- position: fixed;
725
- top: 0;
726
- left: 0;
727
- bottom: 0;
728
- overflow-y: auto;
729
- z-index: 9;
730
- }
731
-
732
- .sidebar-boxed ~ header,
733
- .sidebar-boxed ~ main,
734
- .sidebar-boxed ~ footer {
735
- padding-left: 280px;
736
- }
737
-
738
- .sidebar-boxed ~ header.navbar-transparent .navbar {
739
- right: 0;
740
- left: 280px;
741
- }
742
-
743
- .sidebar-boxed ~ header .banner,
744
- .sidebar-boxed ~ footer .row {
745
- padding-left: 60px;
746
- padding-right: 60px;
747
- }
748
-
749
- .sidebar-boxed ~ main .main-content {
750
- padding-left: 75px;
751
- padding-right: 75px;
752
- }
753
-
754
- .sidebar-boxed.sidebar-right {
755
- left: auto;
756
- right: 0;
757
- }
758
-
759
- .sidebar-boxed.sidebar-right ~ header,
760
- .sidebar-boxed.sidebar-right ~ main,
761
- .sidebar-boxed.sidebar-right ~ footer {
762
- padding-left: 0;
763
- padding-right: 280px;
764
- }
765
-
766
- .sidebar-boxed.sidebar-right ~ header.navbar-transparent .navbar {
767
- right: 280px;
768
- left: 0;
769
- }
770
-
771
- .sidebar-boxed .sidebar-brand {
772
- margin-top: -50px;
773
- margin-bottom: 50px;
774
- display: block;
775
- text-align: center;
776
- }
777
-
778
- .sidebar-boxed .sidenav > li > ul:before,
779
- .sidebar-boxed .sidenav a.active:before {
780
- display: none;
781
- }
782
-
783
- .sidebar-boxed .sidenav a {
784
- padding: 2px 20px !important;
785
- }
786
-
787
- .sidebar-boxed .sidenav a.open,
788
- .sidebar-boxed .sidenav a.open + ul {
789
- background-color: #eee;
790
- }
791
-
792
- .sidebar-boxed .sidenav > li {
793
- margin-bottom: 4px;
794
- position: relative;
795
- }
796
-
797
- .sidebar-boxed .sidenav > li > a {
798
- padding-top: 6px !important;
799
- padding-bottom: 6px !important;
800
- color: #777;
801
- }
802
-
803
- .sidebar-boxed .sidenav > li > a:hover {
804
- background-color: #eee;
805
- }
806
-
807
- .sidebar-boxed .sidenav > li > a:hover, .sidebar-boxed .sidenav > li > a.open {
808
- color: #5cc7b2;
809
- }
810
-
811
- .sidebar-boxed .sidenav > li > a.has-child:after {
812
- content: "\f105";
813
- font-family: FontAwesome;
814
- position: absolute;
815
- right: 20px;
816
- top: 4px;
817
- }
818
-
819
- .sidebar-boxed .sidenav > li > a.open:after {
820
- content: "\f107";
821
- }
822
-
823
- .sidebar-boxed .sidenav > li.active > a.has-child:after {
824
- content: "\f107";
825
- }
826
-
827
- .sidebar-boxed .sidenav ul {
828
- padding-left: 0;
829
- }
830
-
831
- .sidebar-boxed .sidenav ul ul {
832
- padding-left: 24px;
833
- }
834
-
835
- .sidebar-boxed .sidenav ul a {
836
- padding-left: 44px !important;
837
- }
838
-
839
- .sidebar-boxed.sidebar-dark {
840
- background-color: #2a3542;
841
- }
842
-
843
- .sidebar-boxed.sidebar-dark .sidenav a {
844
- color: #aeb2b7;
845
- }
846
-
847
- .sidebar-boxed.sidebar-dark .sidenav a:hover, .sidebar-boxed.sidebar-dark .sidenav a.active {
848
- color: #ffffff;
849
- }
850
-
851
- .sidebar-boxed.sidebar-dark .sidenav a.open,
852
- .sidebar-boxed.sidebar-dark .sidenav a.open + ul {
853
- background-color: #35404d;
854
- }
855
-
856
- .sidebar-boxed.sidebar-dark .sidenav > li > a:hover {
857
- background-color: #35404d;
858
- }
859
-
860
- .sidebar-boxed.sidebar-dark .sidenav > li > a:hover, .sidebar-boxed.sidebar-dark .sidenav > li > a.open {
861
- color: #ffffff !important;
862
- }
863
-
864
- .sidebar-boxed.sidebar-dark .sidenav li.active > a {
865
- color: #ffffff;
866
- }
867
-
868
- @media screen and (min-width: 1170px) {
869
- .sidebar-boxed ~ header .banner,
870
- .sidebar-boxed ~ footer .row {
871
- padding-left: 120px;
872
- padding-right: 120px;
873
- }
874
- .sidebar-boxed ~ main .main-content {
875
- padding-left: 135px;
876
- padding-right: 135px;
877
- }
878
- }
879
-
880
- @media screen and (max-width: 991px) {
881
- .sidebar-boxed {
882
- width: 240px;
883
- }
884
- .sidebar-boxed ~ header,
885
- .sidebar-boxed ~ main,
886
- .sidebar-boxed ~ footer {
887
- padding-left: 240px;
888
- }
889
- .sidebar-boxed ~ header.navbar-transparent .navbar {
890
- right: 0;
891
- left: 240px;
892
- }
893
- .sidebar-boxed ~ header .banner,
894
- .sidebar-boxed ~ footer .row {
895
- padding-left: 15px;
896
- padding-right: 15px;
897
- }
898
- .sidebar-boxed ~ main .main-content {
899
- padding-left: 30px;
900
- padding-right: 30px;
901
- }
902
- .sidebar-boxed.sidebar-right ~ header,
903
- .sidebar-boxed.sidebar-right ~ main,
904
- .sidebar-boxed.sidebar-right ~ footer {
905
- padding-left: 0;
906
- padding-right: 240px;
907
- }
908
- .sidebar-boxed.sidebar-right ~ header.navbar-transparent .navbar {
909
- right: 240px;
910
- left: 0;
911
- }
912
- .sidebar-boxed .sidenav ul a {
913
- padding-left: 38px;
914
- }
915
- }
916
-
917
- @media screen and (max-width: 767px) {
918
- /* off-canvas for sidenav */
919
- html,
920
- body {
921
- overflow-x: hidden;
922
- }
923
- body {
924
- padding-top: 50px;
925
- }
926
- .site-header,
927
- .site-header .navbar {
928
- -webkit-transition: left .25s ease-out;
929
- -o-transition: left .25s ease-out;
930
- transition: left .25s ease-out;
931
- }
932
- .site-header {
933
- position: relative;
934
- left: 0;
935
- }
936
- .site-footer {
937
- padding-left: 15px;
938
- padding-right: 15px;
939
- }
940
- body > main {
941
- position: relative;
942
- left: 0;
943
- padding-left: 15px !important;
944
- padding-right: 15px !important;
945
- -webkit-transition: left .25s ease-out;
946
- -o-transition: left .25s ease-out;
947
- transition: left .25s ease-out;
948
- }
949
- .sidebar-boxed ~ header,
950
- .sidebar-boxed ~ main,
951
- .sidebar-boxed ~ footer {
952
- padding-left: 0;
953
- }
954
- .sidebar-boxed ~ header.navbar-transparent .navbar {
955
- right: 0;
956
- left: 0;
957
- }
958
- .sidebar-boxed.sidebar-right ~ header,
959
- .sidebar-boxed.sidebar-right ~ main,
960
- .sidebar-boxed.sidebar-right ~ footer {
961
- padding-left: 0;
962
- padding-right: 0;
963
- }
964
- .sidebar-boxed.sidebar-right ~ header.navbar-transparent .navbar {
965
- right: 0;
966
- left: 0;
967
- }
968
- .sidebar {
969
- position: fixed;
970
- top: 0;
971
- bottom: 0;
972
- width: 80% !important;
973
- height: 100%;
974
- left: -80% !important;
975
- padding-left: 25px;
976
- padding-top: 20px !important;
977
- overflow-y: auto;
978
- background-color: #fcfcfc !important;
979
- -webkit-transition: left .25s ease-out;
980
- -o-transition: left .25s ease-out;
981
- transition: left .25s ease-out;
982
- }
983
- .sidebar.sidebar-boxed .has-child:after {
984
- display: none;
985
- }
986
- .sidebar.sidebar-boxed .sidenav a {
987
- padding-left: 0 !important;
988
- padding-top: 0 !important;
989
- padding-bottom: 0 !important;
990
- }
991
- .sidebar.sidebar-boxed .sidenav a:hover {
992
- background-color: transparent;
993
- }
994
- .sidebar.sidebar-boxed .sidenav ul a {
995
- padding-left: 18px !important;
996
- }
997
- .sidebar.sidebar-boxed .sidenav a.open,
998
- .sidebar.sidebar-boxed .sidenav a.open + ul {
999
- background-color: transparent;
1000
- }
1001
- .sidebar .sidebar-brand {
1002
- display: none;
1003
- }
1004
- .sidenav.dropable ul {
1005
- display: block;
1006
- }
1007
- .open-sidebar {
1008
- overflow: hidden;
1009
- }
1010
- .open-sidebar .site-header {
1011
- left: 80%;
1012
- }
1013
- .open-sidebar .site-header .navbar {
1014
- left: 80% !important;
1015
- right: -80% !important;
1016
- }
1017
- .open-sidebar > main {
1018
- left: 80%;
1019
- }
1020
- .open-sidebar .sidebar {
1021
- left: 0 !important;
1022
- -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
1023
- box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
1024
- z-index: 1000;
1025
- }
1026
- .open-sidebar .sidebar .sidenav {
1027
- height: auto !important;
1028
- }
1029
- .open-sidebar .site-footer {
1030
- display: none;
1031
- }
1032
- .open-sidebar .site-header.navbar-transparent .navbar {
1033
- position: fixed;
1034
- }
1035
- .sidenav > li {
1036
- position: static;
1037
- }
1038
- .sidenav > li.active a::before {
1039
- display: none;
1040
- }
1041
- .sidenav > li > ul a.active {
1042
- position: static;
1043
- }
1044
- }
1045
-
1046
- .offcanvas-backdrop {
1047
- position: fixed;
1048
- top: 0;
1049
- left: 0;
1050
- right: 0;
1051
- bottom: 0;
1052
- background-color: rgba(255, 255, 255, 0.9);
1053
- z-index: 999;
1054
- }
1055
-
1056
- .offcanvas-backdrop::after {
1057
- content: '×';
1058
- font-family: Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
1059
- font-weight: 100;
1060
- font-size: 45px;
1061
- color: #999;
1062
- opacity: .5;
1063
- position: absolute;
1064
- bottom: 0;
1065
- right: 20px;
1066
- }
1067
-
1068
- /*------------------------------------
1069
- - Typography
1070
- ------------------------------------*/
1071
- body {
1072
- font-family: Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
1073
- color: #333;
1074
- }
1075
-
1076
- a,
1077
- a:focus,
1078
- a:hover {
1079
- color: #5cc7b2;
1080
- }
1081
-
1082
- a:focus {
1083
- text-decoration: none;
1084
- }
1085
-
1086
- p,
1087
- ul {
1088
- font-weight: 400;
1089
- }
1090
-
1091
- hr {
1092
- margin-top: 40px;
1093
- margin-bottom: 40px;
1094
- }
1095
-
1096
- blockquote {
1097
- font-family: georgia, Raleway, sans-serif;
1098
- font-style: italic;
1099
- font-size: 20px;
1100
- color: #777;
1101
- }
1102
-
1103
- h1 {
1104
- font-weight: 200;
1105
- font-size: 52px;
1106
- line-height: 52px;
1107
- margin-bottom: 45px;
1108
- }
1109
-
1110
- h2 {
1111
- font-size: 36px;
1112
- line-height: 33px;
1113
- margin-bottom: 35px;
1114
- margin-top: 65px;
1115
- font-weight: 300;
1116
- padding-bottom: 16px;
1117
- border-bottom: 1px solid #ddd;
1118
- }
1119
-
1120
- h2 a {
1121
- position: relative;
1122
- line-height: 44px;
1123
- }
1124
-
1125
- h2 a:after {
1126
- content: '';
1127
- position: absolute;
1128
- left: 0;
1129
- right: 0;
1130
- bottom: -20px;
1131
- height: 1px;
1132
- background-color: #aaa;
1133
- }
1134
-
1135
- h3 {
1136
- font-size: 30px;
1137
- line-height: 30px;
1138
- margin-bottom: 28px;
1139
- margin-top: 45px;
1140
- font-weight: 300;
1141
- }
1142
-
1143
- h4 {
1144
- font-weight: 400;
1145
- font-size: 25px;
1146
- }
1147
-
1148
- h5 {
1149
- font-size: 21px;
1150
- font-weight: 400;
1151
- }
1152
-
1153
- h6 {
1154
- font-size: 18px;
1155
- font-weight: 400;
1156
- }
1157
-
1158
- h1, h2, h3, h4, h5, h6 {
1159
- font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
1160
- }
1161
-
1162
- h1 a,
1163
- h1 a:focus,
1164
- h1 a:hover, h2 a,
1165
- h2 a:focus,
1166
- h2 a:hover, h3 a,
1167
- h3 a:focus,
1168
- h3 a:hover, h4 a,
1169
- h4 a:focus,
1170
- h4 a:hover, h5 a,
1171
- h5 a:focus,
1172
- h5 a:hover, h6 a,
1173
- h6 a:focus,
1174
- h6 a:hover {
1175
- color: #000000;
1176
- text-decoration: none;
1177
- }
1178
-
1179
- h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
1180
- font-weight: 300;
1181
- }
1182
-
1183
- h1 small {
1184
- font-weight: 100;
1185
- }
1186
-
1187
- h1 a:before, h2 a:before, h3 a:before {
1188
- margin-left: -30px;
1189
- margin-right: 8px;
1190
- font-family: 'Glyphicons Halflings';
1191
- font-size: 22px;
1192
- color: #5cc7b2;
1193
- opacity: .3;
1194
- content: "\e144";
1195
- -webkit-transition: .3s ease;
1196
- -o-transition: .3s ease;
1197
- transition: .3s ease;
1198
- }
1199
-
1200
- h3 a:before {
1201
- opacity: 0;
1202
- }
1203
-
1204
- h1:hover a:before, h2:hover a:before, h3:hover a:before {
1205
- opacity: .6;
1206
- }
1207
-
1208
- /*
1209
- --Depricated
1210
- h2[id] {
1211
- position: relative;
1212
-
1213
- .release-date {
1214
- position: absolute;
1215
- bottom: -26px;
1216
- right: 0;
1217
- background-color: $border-color-darker;
1218
- color: $color-white;
1219
- padding: 5px 10px;
1220
- font-size: 15px;
1221
- font-weight: 500;
1222
- }
1223
- }
1224
- */
1225
- .release-date {
1226
- margin-left: 24px;
1227
- font-size: 15px;
1228
- font-weight: 500;
1229
- color: #d5d5d5;
1230
- }
1231
-
1232
- .release-date:before {
1233
- content: "\f133";
1234
- font-family: FontAwesome;
1235
- margin-right: 8px;
1236
- }
1237
-
1238
- ::-webkit-input-placeholder {
1239
- font-weight: 300;
1240
- }
1241
-
1242
- ::-moz-placeholder {
1243
- color: red;
1244
- }
1245
-
1246
- :-ms-input-placeholder {
1247
- color: red;
1248
- }
1249
-
1250
- .text-primary {
1251
- color: #2196F3;
1252
- }
1253
-
1254
- .text-success {
1255
- color: #4CAF50;
1256
- }
1257
-
1258
- .text-info {
1259
- color: #29B6F6;
1260
- }
1261
-
1262
- .text-warning {
1263
- color: #FF9800;
1264
- }
1265
-
1266
- .text-danger {
1267
- color: #F44336;
1268
- }
1269
-
1270
- .text-purple {
1271
- color: #6D5CAE;
1272
- }
1273
-
1274
- .text-teal {
1275
- color: #00BFA5;
1276
- }
1277
-
1278
- .text-gray {
1279
- color: #ccc;
1280
- }
1281
-
1282
- .text-dark {
1283
- color: #424242;
1284
- }
1285
-
1286
- .text-white {
1287
- color: #ffffff;
1288
- }
1289
-
1290
- @media screen and (max-width: 991px) {
1291
- h1 {
1292
- font-size: 45px;
1293
- margin-bottom: 30px;
1294
- }
1295
- h2 {
1296
- font-size: 32px;
1297
- margin-bottom: 28px;
1298
- margin-top: 55px;
1299
- }
1300
- h2 a::after {
1301
- bottom: -21px;
1302
- }
1303
- h3 {
1304
- font-size: 28px;
1305
- margin-bottom: 25px;
1306
- margin-top: 38px;
1307
- }
1308
- h4 {
1309
- font-size: 24px;
1310
- line-height: 28px;
1311
- }
1312
- h5 {
1313
- font-size: 20px;
1314
- line-height: 25px;
1315
- }
1316
- h1 a:before, h2 a:before, h3 a:before {
1317
- margin-left: 0;
1318
- margin-right: 16px;
1319
- font-size: 22px;
1320
- }
1321
- }
1322
-
1323
- @media screen and (max-width: 460px) {
1324
- h1 {
1325
- font-size: 32px;
1326
- margin-bottom: 25px;
1327
- }
1328
- h2 {
1329
- font-size: 28px;
1330
- margin-top: 40px;
1331
- }
1332
- h2 a::after {
1333
- display: none;
1334
- }
1335
- h3 {
1336
- font-size: 25px;
1337
- margin-bottom: 23px;
1338
- margin-top: 30px;
1339
- }
1340
- h4 {
1341
- font-size: 22px;
1342
- line-height: 26px;
1343
- font-weight: 300;
1344
- }
1345
- h5 {
1346
- font-size: 19px;
1347
- line-height: 24px;
1348
- font-weight: 400;
1349
- }
1350
- h6 {
1351
- font-size: 17px;
1352
- line-height: 20px;
1353
- font-weight: 500;
1354
- }
1355
- }
1356
-
1357
- /*------------------------------------
1358
- - Labels
1359
- ------------------------------------*/
1360
- .label {
1361
- font-weight: 400;
1362
- padding: .3em .6em;
1363
- }
1364
-
1365
- .label .fa,
1366
- .label .glyphicon {
1367
- padding: 0 4px;
1368
- }
1369
-
1370
- .label-primary {
1371
- background-color: #2196F3;
1372
- }
1373
-
1374
- .label-success {
1375
- background-color: #4CAF50;
1376
- }
1377
-
1378
- .label-info {
1379
- background-color: #29B6F6;
1380
- }
1381
-
1382
- .label-warning {
1383
- background-color: #FF9800;
1384
- }
1385
-
1386
- .label-danger {
1387
- background-color: #F44336;
1388
- }
1389
-
1390
- .label-purple {
1391
- background-color: #6D5CAE;
1392
- }
1393
-
1394
- .label-teal {
1395
- background-color: #00BFA5;
1396
- }
1397
-
1398
- .label-dark {
1399
- background-color: #424242;
1400
- }
1401
-
1402
- /*------------------------------------
1403
- - Alerts
1404
- ------------------------------------*/
1405
- .alert {
1406
- border-radius: 2px;
1407
- }
1408
-
1409
- .callout {
1410
- padding: 12px 20px;
1411
- margin: 20px 0;
1412
- border: 1px solid #eee;
1413
- border-left-width: 3px;
1414
- border-radius: 3px;
1415
- }
1416
-
1417
- .callout h4 {
1418
- font-size: 20px;
1419
- }
1420
-
1421
- .callout-success {
1422
- border-left-color: #10cfbd;
1423
- }
1424
-
1425
- .callout-success h4,
1426
- .callout-success a {
1427
- color: #10cfbd;
1428
- }
1429
-
1430
- .callout-info {
1431
- border-left-color: #48b0f7;
1432
- }
1433
-
1434
- .callout-info h4,
1435
- .callout-info a {
1436
- color: #48b0f7;
1437
- }
1438
-
1439
- .callout-warning {
1440
- border-left-color: #f8d053;
1441
- }
1442
-
1443
- .callout-warning h4,
1444
- .callout-warning a {
1445
- color: #f8d053;
1446
- }
1447
-
1448
- .callout-danger {
1449
- border-left-color: #f55753;
1450
- }
1451
-
1452
- .callout-danger h4,
1453
- .callout-danger a {
1454
- color: #f55753;
1455
- }
1456
-
1457
- @media screen and (max-width: 480px) {
1458
- .callout {
1459
- padding: 10px;
1460
- }
1461
- }
1462
-
1463
- /*------------------------------------
1464
- - Buttons
1465
- ------------------------------------*/
1466
- .btn {
1467
- border-radius: 2px;
1468
- border: none;
1469
- -webkit-transition: .3s ease;
1470
- -o-transition: .3s ease;
1471
- transition: .3s ease;
1472
- }
1473
-
1474
- .btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
1475
- outline: none;
1476
- }
1477
-
1478
- .btn-lg {
1479
- border-radius: 4px;
1480
- }
1481
-
1482
- .btn-xl {
1483
- padding: 14px 24px;
1484
- font-size: 20px;
1485
- line-height: 1.6666666;
1486
- border-radius: 6px;
1487
- }
1488
-
1489
- .btn-default {
1490
- background-color: #f5f5f5;
1491
- color: #777777;
1492
- }
1493
-
1494
- .btn-purple,
1495
- .btn-teal,
1496
- .btn-dark {
1497
- color: #ffffff;
1498
- }
1499
-
1500
- .btn-purple.active, .btn-purple.focus, .btn-purple:active, .btn-purple:focus, .btn-purple:hover,
1501
- .btn-teal.active,
1502
- .btn-teal.focus,
1503
- .btn-teal:active,
1504
- .btn-teal:focus,
1505
- .btn-teal:hover,
1506
- .btn-dark.active,
1507
- .btn-dark.focus,
1508
- .btn-dark:active,
1509
- .btn-dark:focus,
1510
- .btn-dark:hover {
1511
- color: #ffffff;
1512
- }
1513
-
1514
- .btn-primary {
1515
- background-color: #2196F3;
1516
- }
1517
-
1518
- .btn-success {
1519
- background-color: #4CAF50;
1520
- }
1521
-
1522
- .btn-info {
1523
- background-color: #29B6F6;
1524
- }
1525
-
1526
- .btn-warning {
1527
- background-color: #FF9800;
1528
- }
1529
-
1530
- .btn-danger {
1531
- background-color: #F44336;
1532
- }
1533
-
1534
- .btn-purple {
1535
- background-color: #6D5CAE;
1536
- }
1537
-
1538
- .btn-teal {
1539
- background-color: #00BFA5;
1540
- }
1541
-
1542
- .btn-dark {
1543
- background-color: #424242;
1544
- }
1545
-
1546
- .btn-white {
1547
- background-color: #ffffff;
1548
- }
1549
-
1550
- .btn-primary.active, .btn-primary.focus, .btn-primary:active, .btn-primary:focus, .btn-primary:hover {
1551
- background-color: #1E88E5;
1552
- }
1553
-
1554
- .btn-success.active, .btn-success.focus, .btn-success:active, .btn-success:focus, .btn-success:hover {
1555
- background-color: #43A047;
1556
- }
1557
-
1558
- .btn-info.active, .btn-info.focus, .btn-info:active, .btn-info:focus, .btn-info:hover {
1559
- background-color: #039BE5;
1560
- }
1561
-
1562
- .btn-warning.active, .btn-warning.focus, .btn-warning:active, .btn-warning:focus, .btn-warning:hover {
1563
- background-color: #F57C00;
1564
- }
1565
-
1566
- .btn-danger.active, .btn-danger.focus, .btn-danger:active, .btn-danger:focus, .btn-danger:hover {
1567
- background-color: #D32F2F;
1568
- }
1569
-
1570
- .btn-purple.active, .btn-purple.focus, .btn-purple:active, .btn-purple:focus, .btn-purple:hover {
1571
- background-color: #554790;
1572
- }
1573
-
1574
- .btn-teal.active, .btn-teal.focus, .btn-teal:active, .btn-teal:focus, .btn-teal:hover {
1575
- background-color: #00af97;
1576
- }
1577
-
1578
- .btn-dark.active, .btn-dark.focus, .btn-dark:active, .btn-dark:focus, .btn-dark:hover {
1579
- background-color: #000000;
1580
- }
1581
-
1582
- .btn-white {
1583
- color: #777;
1584
- }
1585
-
1586
- .btn-white.active, .btn-white.focus, .btn-white:active, .btn-white:focus, .btn-white:hover {
1587
- background-color: #ffffff;
1588
- }
1589
-
1590
- .btn-white.active, .btn-white.focus, .btn-white:active, .btn-white:focus, .btn-white:hover {
1591
- color: #424242 !important;
1592
- }
1593
-
1594
- .btn-outline {
1595
- background-color: transparent;
1596
- border: 1px solid transparent;
1597
- border-radius: 3px;
1598
- }
1599
-
1600
- .btn-outline.active, .btn-outline.focus, .btn-outline:active, .btn-outline:focus, .btn-outline:hover {
1601
- color: #ffffff !important;
1602
- }
1603
-
1604
- .btn-outline.btn-white.active, .btn-outline.btn-white.focus, .btn-outline.btn-white:active, .btn-outline.btn-white:focus, .btn-outline.btn-white:hover {
1605
- color: #333 !important;
1606
- }
1607
-
1608
- .btn-outline.btn-default {
1609
- color: #777777;
1610
- border-color: #777777;
1611
- }
1612
-
1613
- .btn-outline.btn-default.active, .btn-outline.btn-default.focus, .btn-outline.btn-default:active, .btn-outline.btn-default:focus, .btn-outline.btn-default:hover {
1614
- background-color: #777777;
1615
- }
1616
-
1617
- .btn-outline.btn-primary {
1618
- color: #2196F3;
1619
- border-color: #2196F3;
1620
- }
1621
-
1622
- .btn-outline.btn-success {
1623
- color: #4CAF50;
1624
- border-color: #4CAF50;
1625
- }
1626
-
1627
- .btn-outline.btn-info {
1628
- color: #29B6F6;
1629
- border-color: #29B6F6;
1630
- }
1631
-
1632
- .btn-outline.btn-warning {
1633
- color: #FF9800;
1634
- border-color: #FF9800;
1635
- }
1636
-
1637
- .btn-outline.btn-danger {
1638
- color: #F44336;
1639
- border-color: #F44336;
1640
- }
1641
-
1642
- .btn-outline.btn-purple {
1643
- color: #6D5CAE;
1644
- border-color: #6D5CAE;
1645
- }
1646
-
1647
- .btn-outline.btn-teal {
1648
- color: #00BFA5;
1649
- border-color: #00BFA5;
1650
- }
1651
-
1652
- .btn-outline.btn-dark {
1653
- color: #424242;
1654
- border-color: #424242;
1655
- }
1656
-
1657
- .btn-outline.btn-white {
1658
- color: #ffffff;
1659
- border-color: #ffffff;
1660
- }
1661
-
1662
- .btn-round {
1663
- background-color: transparent;
1664
- border: 1px solid transparent;
1665
- border-radius: 17px;
1666
- padding: 6px 16px;
1667
- }
1668
-
1669
- .btn-round.active, .btn-round.focus, .btn-round:active, .btn-round:focus, .btn-round:hover {
1670
- color: #ffffff !important;
1671
- }
1672
-
1673
- .btn-round.btn-xs {
1674
- border-radius: 11px;
1675
- padding: 1px 8px;
1676
- }
1677
-
1678
- .btn-round.btn-sm {
1679
- border-radius: 15px;
1680
- padding: 6px 12px;
1681
- }
1682
-
1683
- .btn-round.btn-lg {
1684
- border-radius: 23px;
1685
- padding: 10px 20px;
1686
- }
1687
-
1688
- .btn-round.btn-default {
1689
- color: #777777;
1690
- border-color: #777777;
1691
- }
1692
-
1693
- .btn-round.btn-primary {
1694
- color: #2196F3;
1695
- border-color: #2196F3;
1696
- }
1697
-
1698
- .btn-round.btn-success {
1699
- color: #4CAF50;
1700
- border-color: #4CAF50;
1701
- }
1702
-
1703
- .btn-round.btn-info {
1704
- color: #29B6F6;
1705
- border-color: #29B6F6;
1706
- }
1707
-
1708
- .btn-round.btn-warning {
1709
- color: #FF9800;
1710
- border-color: #FF9800;
1711
- }
1712
-
1713
- .btn-round.btn-danger {
1714
- color: #F44336;
1715
- border-color: #F44336;
1716
- }
1717
-
1718
- .btn-round.btn-purple {
1719
- color: #6D5CAE;
1720
- border-color: #6D5CAE;
1721
- }
1722
-
1723
- .btn-round.btn-teal {
1724
- color: #00BFA5;
1725
- border-color: #00BFA5;
1726
- }
1727
-
1728
- .btn-round.btn-dark {
1729
- color: #424242;
1730
- border-color: #424242;
1731
- }
1732
-
1733
- .btn-round.btn-white {
1734
- color: #ffffff;
1735
- border-color: #ffffff;
1736
- }
1737
-
1738
- .btn-round.btn-default.active, .btn-round.btn-default.focus, .btn-round.btn-default:active, .btn-round.btn-default:focus, .btn-round.btn-default:hover {
1739
- background-color: #777777;
1740
- }
1741
-
1742
- /*------------------------------------
1743
- - Tables
1744
- ------------------------------------*/
1745
- .table-info {
1746
- font-weight: 300;
1747
- }
1748
-
1749
- .table-info tr > td:first-child {
1750
- font-weight: 400;
1751
- padding-right: 10px;
1752
- }
1753
-
1754
- .table-changelog thead > tr > th:first-child,
1755
- .table-changelog tr > td:first-child {
1756
- width: 100px;
1757
- }
1758
-
1759
- .table-changelog > tbody > tr > td,
1760
- .table-changelog > tbody > tr > th,
1761
- .table-changelog > tfoot > tr > td,
1762
- .table-changelog > tfoot > tr > th,
1763
- .table-changelog > thead > tr > td,
1764
- .table-changelog > thead > tr > th {
1765
- border-top-width: 0;
1766
- }
1767
-
1768
- .table-bordered.table-changelog > tbody > tr > td,
1769
- .table-bordered.table-changelog > tbody > tr > th,
1770
- .table-bordered.table-changelog > tfoot > tr > td,
1771
- .table-bordered.table-changelog > tfoot > tr > th,
1772
- .table-bordered.table-changelog > thead > tr > td,
1773
- .table-bordered.table-changelog > thead > tr > th {
1774
- border-top-width: 1px;
1775
- }
1776
-
1777
- .change {
1778
- display: inline-block;
1779
- width: 70px;
1780
- padding: 7px 0;
1781
- font-size: 12px;
1782
- font-weight: 500;
1783
- line-height: 1;
1784
- color: #ffffff;
1785
- text-align: center;
1786
- white-space: nowrap;
1787
- vertical-align: baseline;
1788
- border-radius: .25em;
1789
- }
1790
-
1791
- .change-added {
1792
- background-color: #4CAF50;
1793
- }
1794
-
1795
- .change-fixed {
1796
- background-color: #FF9800;
1797
- }
1798
-
1799
- .change-removed {
1800
- background-color: #F44336;
1801
- }
1802
-
1803
- .change-updated {
1804
- background-color: #29B6F6;
1805
- }
1806
-
1807
- .change-moved {
1808
- background-color: #6D5CAE;
1809
- }
1810
-
1811
- .change-merged {
1812
- background-color: #00BFA5;
1813
- }
1814
-
1815
- .change-added:after {
1816
- content: "Added";
1817
- }
1818
-
1819
- .change-fixed:after {
1820
- content: "Fixed";
1821
- }
1822
-
1823
- .change-removed:after {
1824
- content: "Removed";
1825
- }
1826
-
1827
- .change-updated:after {
1828
- content: "Updated";
1829
- }
1830
-
1831
- .change-moved:after {
1832
- content: "Moved";
1833
- }
1834
-
1835
- .change-merged:after {
1836
- content: "Merged";
1837
- }
1838
-
1839
- .changelog {
1840
- padding-left: 0;
1841
- list-style: none;
1842
- margin-left: 24px;
1843
- margin-right: 24px;
1844
- }
1845
-
1846
- .changelog > li {
1847
- display: block;
1848
- position: relative;
1849
- padding-left: 96px;
1850
- margin-bottom: 12px;
1851
- }
1852
-
1853
- .changelog > li:before {
1854
- content: "";
1855
- display: inline-block;
1856
- width: 70px;
1857
- padding: 7px 0;
1858
- font-size: 12px;
1859
- font-weight: 500;
1860
- line-height: 1;
1861
- color: #ffffff;
1862
- letter-spacing: 1px;
1863
- text-align: center;
1864
- white-space: nowrap;
1865
- vertical-align: baseline;
1866
- border-radius: .25em;
1867
- position: absolute;
1868
- left: 0;
1869
- top: 2px;
1870
- }
1871
-
1872
- .changelog .ch-added:before {
1873
- content: "Added";
1874
- background-color: #4CAF50;
1875
- }
1876
-
1877
- .changelog .ch-fixed:before {
1878
- content: "Fixed";
1879
- background-color: #FF9800;
1880
- }
1881
-
1882
- .changelog .ch-removed:before {
1883
- content: "Removed";
1884
- background-color: #F44336;
1885
- }
1886
-
1887
- .changelog .ch-updated:before {
1888
- content: "Updated";
1889
- background-color: #29B6F6;
1890
- }
1891
-
1892
- .changelog .ch-moved:before {
1893
- content: "Moved";
1894
- background-color: #6D5CAE;
1895
- }
1896
-
1897
- .changelog .ch-merged:before {
1898
- content: "Merged";
1899
- background-color: #00BFA5;
1900
- }
1901
-
1902
- /*------------------------------------
1903
- - Form elements
1904
- ------------------------------------*/
1905
- .form-control {
1906
- width: 100%;
1907
- padding: 6px 12px;
1908
- margin-bottom: 20px;
1909
- border: 1px solid #e7e7e7;
1910
- color: #ccc;
1911
- border-radius: 0;
1912
- font-size: 15px;
1913
- letter-spacing: 1px;
1914
- -webkit-box-shadow: none;
1915
- box-shadow: none;
1916
- -webkit-transition: .5s ease;
1917
- -o-transition: .5s ease;
1918
- transition: .5s ease;
1919
- }
1920
-
1921
- .form-control:focus {
1922
- color: #777;
1923
- border-color: #ccc;
1924
- outline: none;
1925
- -webkit-box-shadow: none;
1926
- box-shadow: none;
1927
- }
1928
-
1929
- /*------------------------------------
1930
- - Table of content
1931
- ------------------------------------*/
1932
- .toc {
1933
- position: relative;
1934
- list-style: none;
1935
- padding: 50px 20px 20px 30px;
1936
- margin-top: 40px;
1937
- margin-bottom: 0;
1938
- line-height: 30px;
1939
- background-color: #fcfcfc;
1940
- counter-reset: toc1;
1941
- }
1942
-
1943
- .toc a {
1944
- color: #888;
1945
- -webkit-transition: .3s ease;
1946
- -o-transition: .3s ease;
1947
- transition: .3s ease;
1948
- }
1949
-
1950
- .toc a:hover, .toc a:active {
1951
- text-decoration: none;
1952
- color: #5cc7b2;
1953
- }
1954
-
1955
- .toc > li:before {
1956
- content: counter(toc1) ". ";
1957
- counter-increment: toc1;
1958
- }
1959
-
1960
- .toc > li > ol {
1961
- counter-reset: toc2;
1962
- }
1963
-
1964
- .toc > li > ol > li:before {
1965
- content: counter(toc1) "." counter(toc2) ". ";
1966
- counter-increment: toc2;
1967
- }
1968
-
1969
- .toc > li > ol > li > ol {
1970
- counter-reset: toc3;
1971
- }
1972
-
1973
- .toc > li > ol > li > ol > li:before {
1974
- content: counter(toc1) "." counter(toc2) ". " counter(toc3) ". ";
1975
- counter-increment: toc3;
1976
- }
1977
-
1978
- .toc ol {
1979
- list-style: none;
1980
- padding-left: 25px;
1981
- line-height: 23px;
1982
- }
1983
-
1984
- .toc ol li:last-child {
1985
- margin-bottom: 10px;
1986
- }
1987
-
1988
- .toc > li:before,
1989
- .toc ol li:before {
1990
- color: #888;
1991
- font-weight: 500;
1992
- font-size: 14px;
1993
- margin-right: 5px;
1994
- }
1995
-
1996
- .toc:before {
1997
- position: absolute;
1998
- top: 15px;
1999
- left: 15px;
2000
- font-size: 12px;
2001
- font-weight: 600;
2002
- letter-spacing: 1px;
2003
- text-transform: uppercase;
2004
- content: "Table of content";
2005
- color: #ccc;
2006
- }
2007
-
2008
- /*------------------------------------
2009
- - FAQ
2010
- ------------------------------------*/
2011
- .faq > h5 {
2012
- color: #ccc;
2013
- text-transform: uppercase;
2014
- font-size: 15px;
2015
- font-weight: 500;
2016
- letter-spacing: 1px;
2017
- margin-bottom: 30px;
2018
- }
2019
-
2020
- .faq > ul {
2021
- list-style: none;
2022
- margin-bottom: 50px;
2023
- margin-left: 20px;
2024
- padding: 0;
2025
- }
2026
-
2027
- .faq > ul > li {
2028
- margin-bottom: 20px;
2029
- padding-bottom: 10px;
2030
- border-bottom: 1px solid #e7e7e7;
2031
- }
2032
-
2033
- .faq > ul > li:last-child {
2034
- border-bottom: 0;
2035
- margin-bottom: 0;
2036
- padding-bottom: 0;
2037
- }
2038
-
2039
- .faq li h6 {
2040
- font-size: 20px;
2041
- font-weight: 400;
2042
- cursor: pointer;
2043
- }
2044
-
2045
- .faq li h6:before {
2046
- margin-right: 12px;
2047
- display: inline-block;
2048
- width: 20px;
2049
- vertical-align: text-top;
2050
- font-family: FontAwesome;
2051
- color: #999;
2052
- content: "\f128";
2053
- }
2054
-
2055
- .faq li h6.open:before {
2056
- content: "\f031";
2057
- }
2058
-
2059
- .faq li > div {
2060
- font-size: 16px;
2061
- color: #999;
2062
- display: none;
2063
- }
2064
-
2065
- .faq-search {
2066
- width: 100%;
2067
- padding: 12px 16px;
2068
- margin-bottom: 20px;
2069
- border: 1px solid #e7e7e7;
2070
- color: #ccc;
2071
- border-radius: 5px;
2072
- font-size: 25px;
2073
- font-weight: 100;
2074
- -webkit-transition: .5s ease;
2075
- -o-transition: .5s ease;
2076
- transition: .5s ease;
2077
- }
2078
-
2079
- .faq-search:focus {
2080
- color: #777;
2081
- border-color: #ccc;
2082
- outline: none;
2083
- }
2084
-
2085
- /*------------------------------------
2086
- - Tabs
2087
- ------------------------------------*/
2088
- .tabs .nav-tabs > li {
2089
- margin-bottom: 0;
2090
- float: none;
2091
- display: inline-block;
2092
- }
2093
-
2094
- .tabs .nav-tabs > li a {
2095
- border: 0 !important;
2096
- border-radius: 0;
2097
- color: #999;
2098
- text-transform: uppercase;
2099
- font-size: 14px;
2100
- letter-spacing: 1px;
2101
- font-weight: 500;
2102
- -webkit-transition: 0.3s ease;
2103
- -o-transition: 0.3s ease;
2104
- transition: 0.3s ease;
2105
- }
2106
-
2107
- .tabs .nav-tabs > li a:hover {
2108
- background-color: transparent;
2109
- }
2110
-
2111
- .tabs .tab-content {
2112
- padding: 15px;
2113
- }
2114
-
2115
- .tabs-text .nav-tabs > li.active {
2116
- margin-bottom: -1px;
2117
- border-bottom: 1px solid #5cc7b2;
2118
- }
2119
-
2120
- .tabs-text .nav-tabs > li.active a {
2121
- color: #5cc7b2;
2122
- }
2123
-
2124
- .tabs-icon .nav-tabs > li a {
2125
- padding: 10px 25px;
2126
- }
2127
-
2128
- .tabs-icon .nav-tabs > li a .fa,
2129
- .tabs-icon .nav-tabs > li a .glyphicon {
2130
- display: block;
2131
- font-size: 32px;
2132
- margin-bottom: 15px;
2133
- text-align: center;
2134
- }
2135
-
2136
- .tabs-icon .nav-tabs > li.active {
2137
- margin-bottom: -1px;
2138
- border-bottom: 1px solid #5cc7b2;
2139
- }
2140
-
2141
- .tabs-icon .nav-tabs > li.active a {
2142
- color: #5cc7b2;
2143
- }
2144
-
2145
- .tabs-btn .nav-tabs {
2146
- border-bottom: 0;
2147
- }
2148
-
2149
- .tabs-btn .nav-tabs li {
2150
- float: left;
2151
- }
2152
-
2153
- .tabs-btn .nav-tabs li a {
2154
- background-color: #eee;
2155
- margin-right: 0;
2156
- }
2157
-
2158
- .tabs-btn .nav-tabs li.active a {
2159
- color: #5cc7b2;
2160
- }
2161
-
2162
- @media screen and (max-width: 767px) {
2163
- .tabs .nav-tabs > li a {
2164
- font-size: 12px;
2165
- }
2166
- }
2167
-
2168
- /*------------------------------------
2169
- - Code
2170
- ------------------------------------*/
2171
- code {
2172
- color: #f4645f;
2173
- background-color: #f0f2f1;
2174
- text-shadow: 0 1px #ffffff;
2175
- }
2176
-
2177
- pre {
2178
- position: relative;
2179
- background-color: #fcfcfc;
2180
- border-color: #e7e7e7;
2181
- }
2182
-
2183
- .code-preview {
2184
- padding: 16px;
2185
- }
2186
-
2187
- .clipboard-copy {
2188
- position: absolute;
2189
- top: 26px;
2190
- right: 13px;
2191
- line-height: 20px;
2192
- -webkit-transition: opacity .4s ease-in-out;
2193
- -o-transition: opacity .4s ease-in-out;
2194
- transition: opacity .4s ease-in-out;
2195
- opacity: 0;
2196
- z-index: 9;
2197
- }
2198
-
2199
- .clipboard-copy:hover {
2200
- text-decoration: none;
2201
- }
2202
-
2203
- pre:hover .clipboard-copy {
2204
- opacity: 1;
2205
- }
2206
-
2207
- .code-window .clipboard-copy,
2208
- .code-tabs .clipboard-copy {
2209
- top: 13px;
2210
- }
2211
-
2212
- pre .language-name {
2213
- background-color: transparent;
2214
- color: #ccc;
2215
- text-transform: uppercase;
2216
- letter-spacing: 1px;
2217
- font-weight: 600;
2218
- cursor: default;
2219
- position: absolute;
2220
- top: 8px;
2221
- right: 10px;
2222
- }
2223
-
2224
- :not(pre) > code[class*="language-"],
2225
- pre[class*="language-"] {
2226
- background-color: #fcfcfc;
2227
- border-radius: 3px;
2228
- border-color: #e7e7e7;
2229
- padding-bottom: 8px;
2230
- margin-top: 15px;
2231
- margin-bottom: 25px;
2232
- word-wrap: normal;
2233
- }
2234
-
2235
- pre[class*="language-"] {
2236
- padding-top: 30px;
2237
- }
2238
-
2239
- .line-numbers .line-numbers-rows {
2240
- border-right-color: #ccc;
2241
- }
2242
-
2243
- .line-numbers-rows > span:before {
2244
- color: #ccc;
2245
- }
2246
-
2247
- pre[class*='language-'][data-language]::before {
2248
- /*
2249
- background-color: transparent;
2250
- color: $pale-text-color;
2251
- text-transform: uppercase;
2252
- letter-spacing: 1px;
2253
- font-weight: 600;
2254
- top: 8px;
2255
- // Change to 56px after using clipboard
2256
- right: 8px;
2257
- */
2258
- display: none;
2259
- }
2260
-
2261
- div.prism-show-language > div.prism-show-language-label {
2262
- display: none;
2263
- }
2264
-
2265
- .line-highlight {
2266
- background: rgba(255, 255, 0, 0.1);
2267
- }
2268
-
2269
- .token.comment {
2270
- margin-bottom: 0;
2271
- display: inline-block;
2272
- position: static;
2273
- }
2274
-
2275
- .code-window {
2276
- border: 1px solid #e7e7e7;
2277
- border-radius: 3px;
2278
- margin: 30px 0 20px;
2279
- -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.07);
2280
- box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.07);
2281
- }
2282
-
2283
- .code-window .window-bar {
2284
- height: 38px;
2285
- border-top: 1px solid #eaeae9;
2286
- border-bottom: 1px solid #dfdfde;
2287
- background: #ebebeb;
2288
- }
2289
-
2290
- .code-window .window-bar .circles {
2291
- margin: 3px 10px;
2292
- float: left;
2293
- }
2294
-
2295
- .code-window .window-bar .circles .circle {
2296
- display: inline-block;
2297
- width: 8px;
2298
- height: 8px;
2299
- border-radius: 50%;
2300
- background-color: #ffffff;
2301
- border: 1px solid #ffffff;
2302
- }
2303
-
2304
- .code-window .window-bar .circles .circle-red {
2305
- background-color: #fc615c;
2306
- border-color: #fd504a;
2307
- }
2308
-
2309
- .code-window .window-bar .circles .circle-yellow {
2310
- background-color: #fec041;
2311
- border-color: #f0b542;
2312
- }
2313
-
2314
- .code-window .window-bar .circles .circle-green {
2315
- background-color: #33c849;
2316
- border-color: #1bc634;
2317
- }
2318
-
2319
- .code-window .window-bar .circles .window-title {
2320
- margin-left: 16px;
2321
- font-size: 13px;
2322
- color: #999;
2323
- }
2324
-
2325
- .code-window .window-bar .languages {
2326
- margin: 3px 10px;
2327
- float: right;
2328
- }
2329
-
2330
- .code-window .window-bar .languages .btn-group {
2331
- -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.07);
2332
- box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.07);
2333
- }
2334
-
2335
- .code-window .window-bar .languages .btn {
2336
- padding: 2px 10px;
2337
- background-color: #ffffff;
2338
- color: #ccc;
2339
- text-transform: uppercase;
2340
- font-size: 12px;
2341
- font-weight: 500;
2342
- -webkit-transition: .5s ease;
2343
- -o-transition: .5s ease;
2344
- transition: .5s ease;
2345
- }
2346
-
2347
- .code-window .window-bar .languages .btn.active, .code-window .window-bar .languages .btn:active {
2348
- color: #29B6F6;
2349
- -webkit-box-shadow: none;
2350
- box-shadow: none;
2351
- }
2352
-
2353
- .code-window :not(pre) > code[class*="language-"],
2354
- .code-window pre[class*="language-"] {
2355
- background-color: #ffffff;
2356
- border: none;
2357
- margin: 0;
2358
- padding-bottom: 8px;
2359
- }
2360
-
2361
- .code-window pre[class*='language-'][data-language]::before {
2362
- display: none;
2363
- }
2364
-
2365
- .code-window .line-numbers .line-numbers-rows {
2366
- background-color: #f7f7f7;
2367
- border-right: none;
2368
- padding-bottom: 8px;
2369
- }
2370
-
2371
- .code-window .line-numbers-rows > span:before {
2372
- color: #ccc;
2373
- }
2374
-
2375
- .code-window .line-numbers:after {
2376
- content: '';
2377
- background-color: #f7f7f7;
2378
- display: inline-block;
2379
- position: absolute;
2380
- top: 0;
2381
- left: 0;
2382
- width: 39px;
2383
- height: 32px;
2384
- }
2385
-
2386
- .code-snippet {
2387
- border: 1px solid #e7e7e7;
2388
- border-radius: 3px;
2389
- margin: 30px 0 20px;
2390
- }
2391
-
2392
- .code-snippet > * {
2393
- border-bottom: 1px solid #e7e7e7 !important;
2394
- }
2395
-
2396
- .code-snippet > *:last-child {
2397
- border-bottom: none !important;
2398
- }
2399
-
2400
- .code-snippet :not(pre) > code[class*="language-"],
2401
- .code-snippet pre[class*="language-"] {
2402
- margin: 0;
2403
- border: 0;
2404
- border-radius: 0;
2405
- }
2406
-
2407
- .code-snippet .code-preview {
2408
- position: relative;
2409
- padding-top: 35px;
2410
- }
2411
-
2412
- .code-snippet .code-preview::before {
2413
- position: absolute;
2414
- top: 8px;
2415
- right: 12px;
2416
- color: #ccc;
2417
- text-transform: uppercase;
2418
- letter-spacing: 1px;
2419
- font-size: 11px;
2420
- font-weight: 600;
2421
- content: "Example";
2422
- }
2423
-
2424
- .code-tabs {
2425
- margin: 20px 0;
2426
- }
2427
-
2428
- .code-tabs .languages {
2429
- border-bottom: 1px solid #e7e7e7;
2430
- }
2431
-
2432
- .code-tabs .languages .btn {
2433
- padding: 10px 15px;
2434
- background-color: #ffffff;
2435
- color: #ccc;
2436
- text-transform: uppercase;
2437
- font-size: 14px;
2438
- font-weight: 500;
2439
- letter-spacing: 1px;
2440
- -webkit-transition: .5s ease;
2441
- -o-transition: .5s ease;
2442
- transition: .5s ease;
2443
- }
2444
-
2445
- .code-tabs .languages .btn.active, .code-tabs .languages .btn:active {
2446
- color: #5cc7b2;
2447
- -webkit-box-shadow: none;
2448
- box-shadow: none;
2449
- }
2450
-
2451
- .code-tabs pre {
2452
- margin: 0;
2453
- border: 0;
2454
- border-radius: 0;
2455
- }
2456
-
2457
- .code-tabs pre::before {
2458
- display: none !important;
2459
- }
2460
-
2461
- .code-tabs .code-preview {
2462
- background-color: #fcfcfc;
2463
- }
2464
-
2465
- .code-tabs .window-content {
2466
- border-bottom: 1px solid #f5f6f7;
2467
- }
2468
-
2469
- @media screen and (max-width: 991px) {
2470
- .clipboard-copy {
2471
- top: 8px !important;
2472
- right: 8px;
2473
- color: #ccc;
2474
- background-color: transparent;
2475
- text-transform: uppercase;
2476
- letter-spacing: 1px;
2477
- font-weight: 600;
2478
- opacity: 1;
2479
- padding: 0;
2480
- }
2481
- .clipboard-copy:hover, .clipboard-copy:focus {
2482
- color: #555;
2483
- background-color: transparent;
2484
- }
2485
- pre[class*='language-'][data-language]::before {
2486
- right: 56px;
2487
- }
2488
- pre .language-name {
2489
- right: 56px;
2490
- }
2491
- }
2492
-
2493
- @media screen and (max-width: 480px) {
2494
- .code-window .window-bar .languages .btn {
2495
- padding: 2px 6px;
2496
- }
2497
- }
2498
-
2499
- /*------------------------------------
2500
- - Views
2501
- ------------------------------------*/
2502
- .list-view {
2503
- list-style: none;
2504
- padding: 0;
2505
- margin: 0;
2506
- }
2507
-
2508
- .list-view li {
2509
- border-bottom: 1px solid #f5f6f7;
2510
- padding-bottom: 20px;
2511
- margin-bottom: 30px;
2512
- }
2513
-
2514
- .list-view li:last-child {
2515
- border-bottom: 0;
2516
- padding-bottom: 0;
2517
- margin-bottom: 0;
2518
- }
2519
-
2520
- .list-view h5 {
2521
- font-weight: 300;
2522
- margin-bottom: 0;
2523
- }
2524
-
2525
- .list-view h5 a {
2526
- color: #45baa3;
2527
- }
2528
-
2529
- .list-view p {
2530
- color: #777;
2531
- }
2532
-
2533
- .list-view .meta-data {
2534
- font-size: 12px;
2535
- font-style: italic;
2536
- color: #999;
2537
- }
2538
-
2539
- .grid-view {
2540
- list-style: none;
2541
- padding: 0;
2542
- margin: 0;
2543
- }
2544
-
2545
- .grid-view li {
2546
- border-top: 1px solid #5cc7b2;
2547
- border-bottom: 1px solid #f5f6f7;
2548
- border-right: 1px solid #f5f6f7;
2549
- border-top-left-radius: 2px;
2550
- border-top-right-radius: 2px;
2551
- padding: 10px;
2552
- margin-bottom: 3%;
2553
- margin-right: 3%;
2554
- width: 48%;
2555
- display: inline-block;
2556
- vertical-align: top;
2557
- background-color: #fcfcfc;
2558
- }
2559
-
2560
- .grid-view li:nth-child(2n) {
2561
- margin-right: 0;
2562
- }
2563
-
2564
- .grid-view li h6 {
2565
- text-transform: uppercase;
2566
- letter-spacing: 2px;
2567
- font-size: 10px;
2568
- font-weight: bold;
2569
- color: #ccc;
2570
- margin-bottom: 4px;
2571
- }
2572
-
2573
- .grid-view.view-col-3 li {
2574
- margin-right: 2.5%;
2575
- width: 31%;
2576
- }
2577
-
2578
- .grid-view.view-col-3 li:nth-child(2n) {
2579
- margin-right: 2.5%;
2580
- }
2581
-
2582
- .grid-view.view-col-3 li:nth-child(3n) {
2583
- margin-right: 0;
2584
- }
2585
-
2586
- .grid-view h5 {
2587
- font-weight: 300;
2588
- font-size: 18px;
2589
- }
2590
-
2591
- .grid-view h5 a {
2592
- color: #45baa3;
2593
- }
2594
-
2595
- .grid-view p {
2596
- color: #777;
2597
- }
2598
-
2599
- .grid-view .meta-data {
2600
- font-size: 12px;
2601
- font-style: italic;
2602
- color: #999;
2603
- }
2604
-
2605
- .categorized-view {
2606
- list-style: none;
2607
- padding: 0;
2608
- margin: 0;
2609
- }
2610
-
2611
- .categorized-view li {
2612
- padding: 0;
2613
- margin-bottom: 3%;
2614
- margin-right: 3%;
2615
- width: 48%;
2616
- display: inline-block;
2617
- vertical-align: top;
2618
- }
2619
-
2620
- .categorized-view li:nth-child(2n) {
2621
- margin-right: 0;
2622
- }
2623
-
2624
- .categorized-view.view-col-3 li {
2625
- margin-right: 2.5%;
2626
- width: 31%;
2627
- }
2628
-
2629
- .categorized-view.view-col-3 li:nth-child(2n) {
2630
- margin-right: 2.5%;
2631
- }
2632
-
2633
- .categorized-view.view-col-3 li:nth-child(3n) {
2634
- margin-right: 0;
2635
- }
2636
-
2637
- .categorized-view h5 {
2638
- font-weight: 500;
2639
- font-size: 15px;
2640
- text-transform: uppercase;
2641
- letter-spacing: 2px;
2642
- padding: 10px 4px;
2643
- border-bottom: 1px solid #e7e7e7;
2644
- position: relative;
2645
- }
2646
-
2647
- .categorized-view h5:before {
2648
- content: '';
2649
- position: absolute;
2650
- left: 0;
2651
- bottom: -1px;
2652
- width: 20%;
2653
- border-bottom: 1px solid #aaa;
2654
- }
2655
-
2656
- .categorized-view a {
2657
- position: relative;
2658
- display: block;
2659
- margin-bottom: 12px;
2660
- margin-left: 24px;
2661
- line-height: 22px;
2662
- }
2663
-
2664
- .categorized-view a:before {
2665
- position: absolute;
2666
- left: -20px;
2667
- top: 4px;
2668
- content: "\f0f6";
2669
- font: normal normal normal 14px/1 FontAwesome;
2670
- }
2671
-
2672
- @media screen and (max-width: 991px) {
2673
- .categorized-view.view-col-3 li {
2674
- margin-right: 3%;
2675
- width: 48%;
2676
- }
2677
- .categorized-view.view-col-3 li:nth-child(2n) {
2678
- margin-right: 0;
2679
- }
2680
- .categorized-view.view-col-3 li:nth-child(3n) {
2681
- margin-right: 3%;
2682
- }
2683
- }
2684
-
2685
- @media screen and (max-width: 480px) {
2686
- .categorized-view li,
2687
- .grid-view li {
2688
- width: 100% !important;
2689
- margin-right: 0 !important;
2690
- }
2691
- .categorized-view li {
2692
- padding: 0;
2693
- }
2694
- }
2695
-
2696
- /*------------------------------------
2697
- - Color palette
2698
- ------------------------------------*/
2699
- .color-palette-circular {
2700
- list-style: none;
2701
- padding-left: 0;
2702
- margin: 24px 0;
2703
- }
2704
-
2705
- .color-palette-circular li {
2706
- display: inline-block;
2707
- width: 128px;
2708
- height: 128px;
2709
- line-height: 128px;
2710
- text-align: center;
2711
- font-weight: 600;
2712
- border-radius: 100%;
2713
- margin-right: 24px;
2714
- margin-bottom: 24px;
2715
- color: #fff;
2716
- }
2717
-
2718
- .color-palette-stacked {
2719
- list-style: none;
2720
- padding-left: 0;
2721
- margin: 24px 0;
2722
- }
2723
-
2724
- .color-palette-stacked li {
2725
- display: block;
2726
- padding: 15px 20px;
2727
- color: #fff;
2728
- font-weight: 600;
2729
- }
2730
-
2731
- /*------------------------------------
2732
- - Promo
2733
- ------------------------------------*/
2734
- .promo {
2735
- text-align: center;
2736
- margin: 24px 0;
2737
- }
2738
-
2739
- .promo.left {
2740
- text-align: left;
2741
- }
2742
-
2743
- .promo.right {
2744
- text-align: right;
2745
- }
2746
-
2747
- .promo.small-icon .fa {
2748
- float: left;
2749
- font-size: 24px;
2750
- display: inline-block;
2751
- width: 26px;
2752
- height: 26px;
2753
- text-align: left;
2754
- margin-right: 16px;
2755
- margin-top: 8px;
2756
- }
2757
-
2758
- .promo.small-icon > h3 {
2759
- margin-top: 0;
2760
- margin-bottom: 12px;
2761
- padding-top: 6px;
2762
- padding-bottom: 12px;
2763
- font-size: 16px;
2764
- border-bottom: 1px solid #f5f6f7;
2765
- position: relative;
2766
- }
2767
-
2768
- .promo.small-icon > h3:before {
2769
- content: '';
2770
- position: absolute;
2771
- left: 0;
2772
- bottom: -1px;
2773
- width: 42px;
2774
- border-bottom: 1px solid #e7e7e7;
2775
- }
2776
-
2777
- .promo > .fa,
2778
- .promo > .glyphicon {
2779
- font-size: 90px;
2780
- color: #5cc7b2;
2781
- }
2782
-
2783
- .promo > h3 {
2784
- font-weight: 500;
2785
- font-size: 18px;
2786
- margin-top: 30px;
2787
- margin-bottom: 15px;
2788
- letter-spacing: 2px;
2789
- text-transform: uppercase;
2790
- }
2791
-
2792
- .promo > p {
2793
- line-height: 24px;
2794
- color: #999;
2795
- }
2796
-
2797
- .promo > .btn {
2798
- margin-top: 15px;
2799
- }
2800
-
2801
- .promo > img {
2802
- display: block;
2803
- margin: 0 auto;
2804
- max-width: 100%;
2805
- height: auto;
2806
- }
2807
-
2808
- .promo > img.bordered {
2809
- padding: 3px;
2810
- border-radius: 2px;
2811
- border: 1px solid #e7e7e7;
2812
- }
2813
-
2814
- @media screen and (max-width: 991px) {
2815
- .promo {
2816
- margin-bottom: 20px;
2817
- padding-bottom: 20px;
2818
- border-bottom: 1px solid #f5f6f7;
2819
- }
2820
- .promo h3 {
2821
- margin-bottom: 15px;
2822
- }
2823
- .row > div:last-child > .promo {
2824
- border-bottom: 0;
2825
- padding-bottom: 0;
2826
- margin-bottom: 0;
2827
- }
2828
- }
2829
-
2830
- /*------------------------------------
2831
- - Files
2832
- ------------------------------------*/
2833
- .dir-explain {
2834
- position: relative;
2835
- border: 1px solid #ddd;
2836
- border-bottom: none;
2837
- border-top-left-radius: 3px;
2838
- border-top-right-radius: 3px;
2839
- padding: 45px 15px 15px;
2840
- }
2841
-
2842
- .dir-explain:before {
2843
- position: absolute;
2844
- top: 16px;
2845
- left: 16px;
2846
- font-size: 12px;
2847
- font-weight: 500;
2848
- letter-spacing: 1px;
2849
- text-transform: uppercase;
2850
- color: #ccc;
2851
- content: 'Directory structure';
2852
- }
2853
-
2854
- .dir-explain .files {
2855
- margin-bottom: 0;
2856
- margin-top: 5px;
2857
- padding-left: 20px;
2858
- list-style: none;
2859
- }
2860
-
2861
- .dir-explain .files li:before {
2862
- content: '-';
2863
- margin-right: 10px;
2864
- }
2865
-
2866
- .file-tree {
2867
- padding: 20px;
2868
- margin: 20px 0;
2869
- border: 1px solid #f5f6f7;
2870
- background-color: #fcfcfc;
2871
- }
2872
-
2873
- .file-tree h5 {
2874
- font-weight: 400;
2875
- }
2876
-
2877
- .file-tree p {
2878
- font-size: 14px;
2879
- line-height: 22px;
2880
- }
2881
-
2882
- .file-tree ul {
2883
- list-style: none;
2884
- padding-left: 26px;
2885
- margin-bottom: 12px;
2886
- }
2887
-
2888
- .file-tree > ul {
2889
- padding-left: 0;
2890
- margin-bottom: 0;
2891
- }
2892
-
2893
- .file-tree ul ul {
2894
- display: none;
2895
- }
2896
-
2897
- .file-tree li.is-folder.open > ul {
2898
- display: block;
2899
- }
2900
-
2901
- .file-tree li {
2902
- line-height: 30px;
2903
- position: relative;
2904
- }
2905
-
2906
- .file-tree li > i {
2907
- color: #777;
2908
- font-size: 13px;
2909
- padding-left: 12px;
2910
- cursor: default;
2911
- font-style: normal;
2912
- }
2913
-
2914
- .file-tree li > i:before {
2915
- content: "-";
2916
- display: inline-block;
2917
- margin-right: 4px;
2918
- }
2919
-
2920
- .file-tree li.is-folder {
2921
- cursor: pointer;
2922
- }
2923
-
2924
- .file-tree li.is-file {
2925
- font-size: 14px;
2926
- }
2927
-
2928
- .file-tree li:before {
2929
- font: normal normal normal 14px/1 FontAwesome;
2930
- display: inline-block;
2931
- width: 16px;
2932
- margin-right: 6px;
2933
- }
2934
-
2935
- .file-tree li.is-file:before {
2936
- content: "\f15b";
2937
- color: #cedde0;
2938
- }
2939
-
2940
- .file-tree li.is-folder:before {
2941
- content: "\f07b";
2942
- cursor: pointer;
2943
- color: #f4db0b;
2944
- }
2945
-
2946
- .file-tree li.is-folder.open:before {
2947
- content: "\f07c";
2948
- cursor: pointer;
2949
- }
2950
-
2951
- @media screen and (max-width: 480px) {
2952
- .file-tree li > i {
2953
- display: block;
2954
- margin: -5px 0 6px 12px;
2955
- }
2956
- }
2957
-
2958
- /*------------------------------------
2959
- - Media
2960
- ------------------------------------*/
2961
- figure img {
2962
- max-width: 100%;
2963
- height: auto;
2964
- display: block;
2965
- margin: 0 auto;
2966
- }
2967
-
2968
- figcaption {
2969
- font-style: italic;
2970
- text-align: center;
2971
- color: #999;
2972
- }
2973
-
2974
- .img-shadow {
2975
- -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
2976
- box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
2977
- }
2978
-
2979
- .lity {
2980
- z-index: 999;
2981
- }
2982
-
2983
- /*------------------------------------
2984
- - Banner
2985
- ------------------------------------*/
2986
- .banner {
2987
- position: relative;
2988
- height: 50vh;
2989
- -webkit-background-size: cover;
2990
- background-size: cover;
2991
- background-position: center;
2992
- background-attachment: fixed;
2993
- -webkit-transform-style: preserve-3d;
2994
- transform-style: preserve-3d;
2995
- overflow: hidden;
2996
- }
2997
-
2998
- .banner.overlay-black, .banner.overlay-white {
2999
- position: relative;
3000
- z-index: 0;
3001
- color: #ffffff;
3002
- }
3003
-
3004
- .banner.overlay-black:before, .banner.overlay-white:before {
3005
- position: absolute;
3006
- content: ' ';
3007
- top: 0;
3008
- left: 0;
3009
- right: 0;
3010
- bottom: 0;
3011
- z-index: -1;
3012
- background-color: rgba(0, 0, 0, 0.6);
3013
- }
3014
-
3015
- .banner.overlay-white:before {
3016
- background-color: rgba(255, 255, 255, 0.6);
3017
- }
3018
-
3019
- .banner.overlay-white {
3020
- color: #333;
3021
- }
3022
-
3023
- .banner .container,
3024
- .banner .container-fluid {
3025
- position: relative;
3026
- top: 50%;
3027
- -webkit-transform: translateY(-50%);
3028
- -o-transform: translateY(-50%);
3029
- transform: translateY(-50%);
3030
- }
3031
-
3032
- .banner .container.text-center,
3033
- .banner .container-fluid.text-center {
3034
- max-width: 80%;
3035
- margin: 0 auto;
3036
- }
3037
-
3038
- .banner .container.text-left, .banner .container.text-right,
3039
- .banner .container-fluid.text-left,
3040
- .banner .container-fluid.text-right {
3041
- max-width: 70%;
3042
- margin: 0 30px;
3043
- }
3044
-
3045
- .banner .container.text-right,
3046
- .banner .container-fluid.text-right {
3047
- margin-left: auto;
3048
- }
3049
-
3050
- .banner h1 {
3051
- font-weight: 100;
3052
- }
3053
-
3054
- .banner h1 strong {
3055
- font-weight: 300;
3056
- }
3057
-
3058
- .banner p {
3059
- font-size: 18px;
3060
- font-weight: 300;
3061
- line-height: 28px;
3062
- }
3063
-
3064
- .banner.auto-size {
3065
- height: auto;
3066
- padding-top: 128px;
3067
- padding-bottom: 48px;
3068
- }
3069
-
3070
- .banner.auto-size .container,
3071
- .banner.auto-size .container-fluid {
3072
- position: static;
3073
- -webkit-transform: translateY(0) !important;
3074
- -o-transform: translateY(0) !important;
3075
- transform: translateY(0) !important;
3076
- top: 0;
3077
- }
3078
-
3079
- .banner.banner-sm {
3080
- height: 35vh;
3081
- }
3082
-
3083
- .banner.banner-sm h1 {
3084
- font-size: 40px;
3085
- line-height: 45px;
3086
- }
3087
-
3088
- .banner.banner-lg {
3089
- height: 75vh;
3090
- }
3091
-
3092
- .banner.banner-lg h1 {
3093
- font-size: 40px;
3094
- line-height: 45px;
3095
- }
3096
-
3097
- .banner.banner-full-height {
3098
- height: 100vh;
3099
- }
3100
-
3101
- .banner.banner-full-height .container,
3102
- .banner.banner-full-height .container-fluid {
3103
- -webkit-transform: translateY(-70%);
3104
- -o-transform: translateY(-70%);
3105
- transform: translateY(-70%);
3106
- }
3107
-
3108
- .banner.banner-full-height h1 {
3109
- font-size: 60px;
3110
- line-height: 70px;
3111
- }
3112
-
3113
- .banner .social-icons {
3114
- position: absolute;
3115
- left: 0;
3116
- right: 0;
3117
- bottom: 32px;
3118
- list-style: none;
3119
- margin: 0;
3120
- padding: 0;
3121
- text-align: center;
3122
- }
3123
-
3124
- .banner .social-icons li {
3125
- display: inline-block;
3126
- padding: 4px 8px;
3127
- }
3128
-
3129
- .banner .social-icons a {
3130
- color: #ffffff;
3131
- }
3132
-
3133
- .banner.has-attached-image {
3134
- height: 100%;
3135
- }
3136
-
3137
- .banner.has-attached-image .container,
3138
- .banner.has-attached-image .container-fluid {
3139
- position: static;
3140
- -webkit-transform: translateY(0);
3141
- -o-transform: translateY(0);
3142
- transform: translateY(0);
3143
- margin-top: 10%;
3144
- margin-bottom: 10%;
3145
- }
3146
-
3147
- .banner .attached-image img {
3148
- max-width: 70%;
3149
- display: block;
3150
- margin: 0 auto;
3151
- border-top-left-radius: 16px;
3152
- border-top-right-radius: 16px;
3153
- -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
3154
- box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
3155
- }
3156
-
3157
- @media screen and (max-width: 991px) {
3158
- .banner .attached-image img {
3159
- border-top-left-radius: 8px;
3160
- border-top-right-radius: 8px;
3161
- }
3162
- }
3163
-
3164
- @media screen and (max-width: 767px) {
3165
- .banner .container,
3166
- .banner .container-fluid {
3167
- -webkit-transform: translateY(-50%) !important;
3168
- -o-transform: translateY(-50%) !important;
3169
- transform: translateY(-50%) !important;
3170
- max-width: 100% !important;
3171
- }
3172
- .banner h1 {
3173
- font-size: 30px !important;
3174
- line-height: 38px !important;
3175
- }
3176
- .banner p {
3177
- font-size: 16px;
3178
- line-height: 22px;
3179
- }
3180
- .banner .btn {
3181
- margin-bottom: 8px;
3182
- }
3183
- .banner.has-attached-image {
3184
- height: 100% !important;
3185
- }
3186
- .banner.has-attached-image .container,
3187
- .banner.has-attached-image .container-fluid {
3188
- position: static;
3189
- -webkit-transform: translateY(0) !important;
3190
- -o-transform: translateY(0) !important;
3191
- transform: translateY(0) !important;
3192
- margin-top: 20%;
3193
- margin-bottom: 15%;
3194
- }
3195
- .banner .attached-image img {
3196
- max-width: 90%;
3197
- border-top-left-radius: 4px;
3198
- border-top-right-radius: 4px;
3199
- }
3200
- }
3201
-
3202
- /*------------------------------------
3203
- - Carousel
3204
- ------------------------------------*/
3205
- .carousel {
3206
- overflow: hidden;
3207
- }
3208
-
3209
- .carousel .carousel-control {
3210
- text-shadow: none;
3211
- background-image: none;
3212
- width: 40%;
3213
- }
3214
-
3215
- .carousel .carousel-control .fa {
3216
- position: absolute;
3217
- top: 50%;
3218
- margin-top: -32px;
3219
- color: #fff;
3220
- font-size: 64px;
3221
- -webkit-transition: .3s ease-out;
3222
- -o-transition: .3s ease-out;
3223
- transition: .3s ease-out;
3224
- }
3225
-
3226
- .carousel .carousel-control.right .fa {
3227
- right: -50px;
3228
- }
3229
-
3230
- .carousel .carousel-control.right:hover .fa {
3231
- right: 30px;
3232
- }
3233
-
3234
- .carousel .carousel-control.left .fa {
3235
- left: -50px;
3236
- }
3237
-
3238
- .carousel .carousel-control.left:hover .fa {
3239
- left: 30px;
3240
- }
3241
-
3242
- .carousel.color-alt .carousel-control .fa {
3243
- color: #777;
3244
- }
3245
-
3246
- .carousel.color-alt .carousel-indicators li {
3247
- border-color: #777;
3248
- }
3249
-
3250
- .carousel.color-alt .carousel-indicators .active {
3251
- background-color: #777;
3252
- }
3253
-
3254
- .carousel.indicators-out {
3255
- overflow: visible;
3256
- padding-bottom: 50px;
3257
- }
3258
-
3259
- .carousel.indicators-out .carousel-indicators {
3260
- bottom: 0;
3261
- }
3262
-
3263
- .carousel.indicators-out .carousel-indicators li {
3264
- border-color: #5cc7b2;
3265
- }
3266
-
3267
- .carousel.indicators-out .carousel-indicators .active {
3268
- background-color: #5cc7b2;
3269
- }
3270
-
3271
- @media screen and (max-width: 991px) {
3272
- .carousel .carousel-control.right .fa {
3273
- right: 30px;
3274
- }
3275
- .carousel .carousel-control.left .fa {
3276
- left: 30px;
3277
- }
3278
- }
3279
-
3280
- /*------------------------------------
3281
- - Step
3282
- ------------------------------------*/
3283
- .step-text {
3284
- list-style: none;
3285
- padding-left: 0;
3286
- counter-reset: toc1;
3287
- }
3288
-
3289
- .step-text > li {
3290
- position: relative;
3291
- padding-left: 60px;
3292
- margin-bottom: 48px;
3293
- font-weight: 300;
3294
- }
3295
-
3296
- .step-text > li:before {
3297
- content: counter(toc1, decimal-leading-zero) ".";
3298
- counter-increment: toc1;
3299
- position: absolute;
3300
- left: 0;
3301
- top: 0;
3302
- color: #555;
3303
- font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
3304
- font-size: 24px;
3305
- width: 42px;
3306
- height: 42px;
3307
- font-weight: bold;
3308
- }
3309
-
3310
- .step-text > li ul {
3311
- list-style: none;
3312
- padding-left: 0;
3313
- margin-top: 30px;
3314
- counter-reset: toc2;
3315
- }
3316
-
3317
- .step-text > li li {
3318
- position: relative;
3319
- padding-left: 60px;
3320
- margin-bottom: 48px;
3321
- font-weight: 300;
3322
- }
3323
-
3324
- .step-text > li li:before {
3325
- content: counter(toc1) "-" counter(toc2) ".";
3326
- counter-increment: toc2;
3327
- position: absolute;
3328
- left: 0;
3329
- top: 0;
3330
- color: #555;
3331
- font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
3332
- font-size: 22px;
3333
- width: 42px;
3334
- height: 42px;
3335
- font-weight: bold;
3336
- }
3337
-
3338
- .step-text h5 {
3339
- font-weight: 500;
3340
- font-size: 18px;
3341
- padding-top: 5px;
3342
- }
3343
-
3344
- .step-text ul h5 {
3345
- font-size: 17px;
3346
- padding-top: 6px;
3347
- }
3348
-
3349
- .step-image {
3350
- margin-top: 60px;
3351
- padding-top: 32px;
3352
- border-top: 1px solid #f5f6f7;
3353
- overflow: visible;
3354
- }
3355
-
3356
- .step-image .item > img {
3357
- display: block;
3358
- margin: 0 auto;
3359
- }
3360
-
3361
- .step-image .carousel-caption {
3362
- position: static;
3363
- text-align: left;
3364
- color: #555;
3365
- text-shadow: none;
3366
- }
3367
-
3368
- .step-image .carousel-indicators {
3369
- top: -40px;
3370
- left: 0;
3371
- margin-left: 0;
3372
- text-align: left;
3373
- width: 80%;
3374
- counter-reset: toc1;
3375
- }
3376
-
3377
- .step-image .carousel-indicators:before {
3378
- content: "STEPS:";
3379
- color: #ccc;
3380
- font-weight: 500;
3381
- font-size: 11px;
3382
- text-transform: uppercase;
3383
- letter-spacing: 1px;
3384
- margin-right: 10px;
3385
- }
3386
-
3387
- .step-image .carousel-indicators li {
3388
- border: 0;
3389
- text-indent: 0;
3390
- width: 34px;
3391
- height: 34px;
3392
- text-align: center;
3393
- }
3394
-
3395
- .step-image .carousel-indicators li:before {
3396
- content: counter(toc1);
3397
- counter-increment: toc1;
3398
- font-weight: 500;
3399
- color: #ccc;
3400
- -webkit-transition: .1s ease;
3401
- -o-transition: .1s ease;
3402
- transition: .1s ease;
3403
- }
3404
-
3405
- .step-image .carousel-indicators .active:before,
3406
- .step-image .carousel-indicators li:hover:before {
3407
- color: #555;
3408
- font-size: 18px;
3409
- }
3410
-
3411
- .step-image .carousel-control {
3412
- text-shadow: none;
3413
- color: #555;
3414
- width: 34px;
3415
- height: 34px;
3416
- font-size: 26px;
3417
- }
3418
-
3419
- .step-image .carousel-control.right, .step-image .carousel-control.left {
3420
- background-image: none;
3421
- top: -40px;
3422
- bottom: auto;
3423
- left: auto;
3424
- right: 0;
3425
- }
3426
-
3427
- .step-image .carousel-control.left {
3428
- right: 36px;
3429
- }
3430
-
3431
- .step-image .carousel-control .fa {
3432
- position: static;
3433
- color: #555;
3434
- font-size: 26px;
3435
- }
3436
-
3437
- /*------------------------------------
3438
- - Jumbotron
3439
- ------------------------------------*/
3440
- .jumbotron {
3441
- -webkit-background-size: cover;
3442
- background-size: cover;
3443
- background-position: center;
3444
- border-radius: 0 !important;
3445
- background-color: #f5f5f5;
3446
- }
3447
-
3448
- .jumbotron.overlay-black, .jumbotron.overlay-white {
3449
- position: relative;
3450
- z-index: 0;
3451
- }
3452
-
3453
- .jumbotron.overlay-black:before, .jumbotron.overlay-white:before {
3454
- position: absolute;
3455
- content: ' ';
3456
- top: 0;
3457
- left: 0;
3458
- right: 0;
3459
- bottom: 0;
3460
- z-index: -1;
3461
- background-color: rgba(0, 0, 0, 0.4);
3462
- }
3463
-
3464
- .jumbotron.overlay-white:before {
3465
- background-color: rgba(255, 255, 255, 0.7);
3466
- }
3467
-
3468
- .jumbotron p {
3469
- font-weight: 300;
3470
- line-height: 30px;
3471
- }
3472
-
3473
- .jumbotron h1 {
3474
- line-height: 70px;
3475
- }
3476
-
3477
- .jumbotron h2 {
3478
- border-bottom: 0;
3479
- margin-bottom: 16px;
3480
- line-height: 50px;
3481
- }
3482
-
3483
- .jumbotron .btn {
3484
- margin-top: 15px;
3485
- }
3486
-
3487
- .jumbotron-primary {
3488
- background-color: #2196F3;
3489
- color: #ffffff;
3490
- }
3491
-
3492
- .jumbotron-success {
3493
- background-color: #4CAF50;
3494
- color: #ffffff;
3495
- }
3496
-
3497
- .jumbotron-info {
3498
- background-color: #29B6F6;
3499
- color: #ffffff;
3500
- }
3501
-
3502
- .jumbotron-warning {
3503
- background-color: #FF9800;
3504
- color: #ffffff;
3505
- }
3506
-
3507
- .jumbotron-danger {
3508
- background-color: #F44336;
3509
- color: #ffffff;
3510
- }
3511
-
3512
- .jumbotron-purple {
3513
- background-color: #6D5CAE;
3514
- color: #ffffff;
3515
- }
3516
-
3517
- .jumbotron-teal {
3518
- background-color: #00BFA5;
3519
- color: #ffffff;
3520
- }
3521
-
3522
- .jumbotron-dark {
3523
- background-color: #424242;
3524
- color: #ffffff;
3525
- }
3526
-
3527
- .jumbotron-white {
3528
- background-color: #ffffff;
3529
- color: #333;
3530
- }
3531
-
3532
- .jumbotron.jumbotron-sm {
3533
- padding: 48px 24px 24px;
3534
- }
3535
-
3536
- .jumbotron.jumbotron-sm h1, .jumbotron.jumbotron-sm h2, .jumbotron.jumbotron-sm h3, .jumbotron.jumbotron-sm h4, .jumbotron.jumbotron-sm h5 {
3537
- margin-top: 0;
3538
- }
3539
-
3540
- .jumbotron.jumbotron-sm p {
3541
- font-size: 19px;
3542
- line-height: 28px;
3543
- }
3544
-
3545
- .jumbotron.jumbotron-lg {
3546
- padding: 100px 36px;
3547
- }
3548
-
3549
- .jumbotron.jumbotron-lg p {
3550
- font-size: 24px;
3551
- line-height: 38px;
3552
- }
3553
-
3554
- .jumbotron.jumbotron-xl {
3555
- padding: 220px 50px;
3556
- }
3557
-
3558
- .jumbotron.jumbotron-xl p {
3559
- font-size: 28px;
3560
- line-height: 42px;
3561
- }
3562
-
3563
- @media screen and (max-width: 991px) {
3564
- .jumbotron h1 {
3565
- line-height: 40px;
3566
- }
3567
- .jumbotron h2 {
3568
- line-height: 35px;
3569
- }
3570
- .jumbotron.jumbotron-lg {
3571
- padding: 90px 24px;
3572
- }
3573
- .jumbotron.jumbotron-lg p {
3574
- font-size: 18px;
3575
- line-height: 26px;
3576
- }
3577
- .jumbotron.jumbotron-xl {
3578
- padding: 180px 32px;
3579
- }
3580
- .jumbotron.jumbotron-xl p {
3581
- font-size: 18px;
3582
- line-height: 26px;
3583
- }
3584
- }
3585
-
3586
- @media screen and (max-width: 767px) {
3587
- .jumbotron.jumbotron-lg {
3588
- padding: 70px 16px;
3589
- }
3590
- .jumbotron.jumbotron-xl {
3591
- padding: 100px 20px;
3592
- }
3593
- }
3594
-
3595
- /*------------------------------------
3596
- - Breadcrumb
3597
- ------------------------------------*/
3598
- .breadcrumb {
3599
- border-radius: 0;
3600
- background-color: transparent;
3601
- border-bottom: 1px solid #e7e7e7;
3602
- margin-bottom: 40px;
3603
- }
3604
-
3605
- /*------------------------------------
3606
- - Pagination
3607
- ------------------------------------*/
3608
- .pagination li > a,
3609
- .pagination li > span {
3610
- border: none;
3611
- margin: 0 4px;
3612
- color: #777;
3613
- -webkit-transition: .3s ease-out;
3614
- -o-transition: .3s ease-out;
3615
- transition: .3s ease-out;
3616
- }
3617
-
3618
- .pagination .previous,
3619
- .pagination .next {
3620
- font-size: 20px;
3621
- line-height: 21px;
3622
- }
3623
-
3624
- .pagination > li > a:focus,
3625
- .pagination > li > a:hover,
3626
- .pagination > li > span:focus,
3627
- .pagination > li > span:hover {
3628
- background-color: transparent;
3629
- color: #5cc7b2;
3630
- }
3631
-
3632
- .pagination > .active > a,
3633
- .pagination > .active > a:focus,
3634
- .pagination > .active > a:hover,
3635
- .pagination > .active > span,
3636
- .pagination > .active > span:focus,
3637
- .pagination > .active > span:hover {
3638
- background-color: #5cc7b2;
3639
- border-radius: 2px;
3640
- }
3641
-
3642
- .pager li > a {
3643
- border: none;
3644
- text-transform: uppercase;
3645
- letter-spacing: 1px;
3646
- font-size: 14px;
3647
- font-weight: 600;
3648
- border-radius: 0;
3649
- color: #777;
3650
- -webkit-transition: .3s ease-out;
3651
- -o-transition: .3s ease-out;
3652
- transition: .3s ease-out;
3653
- }
3654
-
3655
- .pager li > a:hover {
3656
- background-color: transparent;
3657
- color: #5cc7b2;
3658
- }
3659
-
3660
- .pager .next > a::after {
3661
- content: "\f105";
3662
- font-family: FontAwesome;
3663
- font-size: 20px;
3664
- margin-left: 8px;
3665
- vertical-align: bottom;
3666
- }
3667
-
3668
- .pager .previous > a::before {
3669
- content: "\f104";
3670
- font-family: FontAwesome;
3671
- font-size: 20px;
3672
- margin-right: 8px;
3673
- vertical-align: bottom;
3674
- }
3675
-
3676
- /*------------------------------------
3677
- - Requirements
3678
- ------------------------------------*/
3679
- .require-script {
3680
- background-color: #fcfcfc;
3681
- border: 1px solid #f5f6f7;
3682
- border-radius: 3px;
3683
- padding: 15px;
3684
- }
3685
-
3686
- .require-script .css,
3687
- .require-script .js {
3688
- position: relative;
3689
- padding-top: 25px;
3690
- }
3691
-
3692
- .require-script .css:before,
3693
- .require-script .js:before {
3694
- position: absolute;
3695
- top: 0;
3696
- color: #ccc;
3697
- font-weight: 500;
3698
- font-size: 11px;
3699
- text-transform: uppercase;
3700
- letter-spacing: 1px;
3701
- }
3702
-
3703
- .require-script .css:before {
3704
- content: "Required Stylesheet";
3705
- }
3706
-
3707
- .require-script .js:before {
3708
- content: "Required Script";
3709
- }
3710
-
3711
- .require-script > p + p {
3712
- margin-top: 20px;
3713
- }
3714
-
3715
- @media screen and (max-width: 480px) {
3716
- .require-script .css,
3717
- .require-script .js {
3718
- word-break: break-all;
3719
- }
3720
- }
3721
-
3722
- /*------------------------------------
3723
- - Blog
3724
- ------------------------------------*/
3725
- .post {
3726
- margin-bottom: 50px;
3727
- }
3728
-
3729
- .post header h2 {
3730
- margin-bottom: 10px;
3731
- }
3732
-
3733
- .post-meta {
3734
- list-style: none;
3735
- padding-left: 0;
3736
- }
3737
-
3738
- .post-meta li {
3739
- display: inline-block;
3740
- margin-right: 50px;
3741
- }
3742
-
3743
- .post-meta i {
3744
- text-transform: uppercase;
3745
- font-weight: 300;
3746
- font-style: normal;
3747
- font-size: 13px;
3748
- letter-spacing: 1px;
3749
- }
3750
-
3751
- .post-media {
3752
- max-width: 100%;
3753
- text-align: center;
3754
- margin: 20px 0;
3755
- }
3756
-
3757
- .post-media img {
3758
- max-width: 100%;
3759
- }
3760
-
3761
- .blog-content h1, .blog-content h2, .blog-content h3 {
3762
- margin: 20px 0;
3763
- }
3764
-
3765
- .blog-content h2 {
3766
- border-bottom: 0;
3767
- }
3768
-
3769
- .read-more {
3770
- text-align: center;
3771
- margin-top: 30px;
3772
- }
3773
-
3774
- .read-more .btn {
3775
- text-transform: uppercase;
3776
- letter-spacing: 1px;
3777
- border-radius: 0;
3778
- font-size: 13px;
3779
- padding: 8px 15px;
3780
- }
3781
-
3782
- .post-tags {
3783
- padding-top: 20px;
3784
- }
3785
-
3786
- .post-tags a {
3787
- display: inline-block;
3788
- padding: 4px 12px;
3789
- margin-right: 8px;
3790
- margin-bottom: 8px;
3791
- border: 1px solid #f5f5f5;
3792
- color: #777;
3793
- text-transform: uppercase;
3794
- font-size: 12px;
3795
- -webkit-transition: .3s linear;
3796
- -o-transition: .3s linear;
3797
- transition: .3s linear;
3798
- }
3799
-
3800
- .post-tags a:hover {
3801
- text-decoration: none;
3802
- background-color: #5cc7b2;
3803
- border-color: #5cc7b2;
3804
- color: #fff;
3805
- }
3806
-
3807
- .sidebar .widget:first-child {
3808
- margin-top: 65px;
3809
- }
3810
-
3811
- .widget {
3812
- margin-bottom: 30px;
3813
- }
3814
-
3815
- .widget-title {
3816
- text-align: center;
3817
- font-size: 14px;
3818
- font-weight: 600;
3819
- text-transform: uppercase;
3820
- letter-spacing: 1px;
3821
- line-height: 46px;
3822
- margin-bottom: 16px;
3823
- }
3824
-
3825
- .widget-body {
3826
- list-style: none;
3827
- padding-left: 0;
3828
- }
3829
-
3830
- .widget_categories .cat-item {
3831
- border-bottom: 1px solid #eee;
3832
- }
3833
-
3834
- .widget_categories ul .cat-item:last-child {
3835
- border-bottom: 0;
3836
- }
3837
-
3838
- .widget_categories .cat-item a {
3839
- font-size: 16px;
3840
- line-height: 44px;
3841
- color: #777;
3842
- -webkit-transition: color .2s linear;
3843
- -o-transition: color .2s linear;
3844
- transition: color .2s linear;
3845
- }
3846
-
3847
- .widget_categories .cat-item a:hover {
3848
- color: #5cc7b2;
3849
- text-decoration: none;
3850
- }
3851
-
3852
- .widget_tag_cloud .widget-body a {
3853
- display: inline-block;
3854
- padding: 6px 12px;
3855
- margin-right: 8px;
3856
- margin-bottom: 8px;
3857
- border: 1px solid #f5f5f5;
3858
- color: #777;
3859
- text-transform: uppercase;
3860
- font-size: 12px;
3861
- -webkit-transition: .3s linear;
3862
- -o-transition: .3s linear;
3863
- transition: .3s linear;
3864
- }
3865
-
3866
- .widget_tag_cloud .widget-body a:hover {
3867
- text-decoration: none;
3868
- background-color: #5cc7b2;
3869
- border-color: #5cc7b2;
3870
- color: #fff;
3871
- }
3872
-
3873
- #comments {
3874
- margin-top: 50px;
3875
- border-top: 1px solid #eee;
3876
- padding-top: 50px;
3877
- }
3878
-
3879
- #comments > header h6 {
3880
- font-weight: 600;
3881
- text-align: center;
3882
- text-transform: uppercase;
3883
- }
3884
-
3885
- #list-comments {
3886
- list-style: none;
3887
- padding-left: 0;
3888
- margin-top: 50px;
3889
- }
3890
-
3891
- .comment {
3892
- position: relative;
3893
- display: block;
3894
- margin-bottom: 30px;
3895
- }
3896
-
3897
- .comment .comment-body {
3898
- padding: 20px;
3899
- border: 1px solid #f5f5f5;
3900
- }
3901
-
3902
- .comment .comment-author::after {
3903
- content: '';
3904
- display: table;
3905
- clear: both;
3906
- }
3907
-
3908
- .comment .avatar {
3909
- width: 64px;
3910
- height: 64px;
3911
- border-radius: 100%;
3912
- float: left;
3913
- margin-right: 20px;
3914
- }
3915
-
3916
- .comment .fn {
3917
- display: inline-block;
3918
- text-transform: uppercase;
3919
- font-style: normal;
3920
- letter-spacing: 1px;
3921
- font-weight: 600;
3922
- font-size: 13px;
3923
- float: left;
3924
- }
3925
-
3926
- .comment .comment-date {
3927
- display: inline-block;
3928
- float: left;
3929
- color: #999;
3930
- font-size: 12px;
3931
- }
3932
-
3933
- .comment-text {
3934
- margin-top: 20px;
3935
- }
3936
-
3937
- .comment-form .form-control {
3938
- width: 100%;
3939
- max-width: 600px;
3940
- height: 50px;
3941
- }
3942
-
3943
- .comment-form textarea {
3944
- height: 140px !important;
3945
- }