page-login.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. /* Theme IMPORTS
  2. ========================================================================== */
  3. /* #BOOTSTRAP AND MIXINS - Base Unmodified Bootstrap file with theme mixins
  4. ========================================================================== */
  5. /*---------------------------------------------------
  6. SASS ELements (based on LESS Elements 0.9 http://lesselements.com)
  7. -------------------------------- -------------------
  8. LESS ELEMENTS made by Dmitry Fadeyev (http://fadeyev.net)
  9. SASS port by Samuel Beek (http://samuelbeek.com)
  10. ---------------------------------------------------*/
  11. /*------------------------
  12. Usage
  13. h1 {
  14. font-size: rem(32);
  15. }
  16. OR:
  17. h1 {
  18. font-size: rem(32px);
  19. }
  20. ------------------------*/
  21. /*------------------------
  22. FADE IN
  23. e.g. @include fadeIn( 2s );
  24. ------------------------*/
  25. /*------------------------
  26. mixin that calculates if text needs to be light or dark
  27. depending on the background color passed.
  28. From this W3C document: http://www.webmasterworld.com/r.cgi?f=88&d=9769&url=http://www.w3.org/TR/AERT#color-contrast
  29. usage:
  30. @include text-contrast($bgcolor)
  31. Color brightness is determined by the following formula:
  32. ((Red value X 299) + (Green value X 587) + (Blue value X 114)) / 1000
  33. ------------------------*/
  34. /*------------------------
  35. color factory
  36. eg: @include paint($blue-grey-50, bg-blue-grey-50);
  37. ------------------------*/
  38. /* backface visibility */
  39. /* generate theme button */
  40. /* #BASE - Base Variable file along with font library, and colors.
  41. ========================================================================== */
  42. /* THEME COLORs
  43. ========================================================================== */
  44. /* Looks good on chrome default color profile */
  45. /* looks good in sRGB but washed up on chrome default
  46. $color-primary: #826bb0;
  47. $color-success: #31cb55;
  48. $color-info: #5e93ec;
  49. $color-warning: #eec559;
  50. $color-danger: #dc4b92;
  51. $color-fusion: darken(desaturate(adjust-hue($color-primary, 5), 80%), 25%); */
  52. /* Color Polarity
  53. ========================================================================== */
  54. /* PAINTBUCKET MIXER
  55. ========================================================================== */
  56. /* the grays */
  57. /* the sapphires */
  58. /* the emeralds */
  59. /* the amethyths */
  60. /* the topaz */
  61. /* the rubies */
  62. /* the graphites */
  63. /* Define universal border difition (div outlines, etc)
  64. ========================================================================== */
  65. /* MOBILE BREAKPOINT & GUTTERS (contains some bootstrap responsive overrides)
  66. ========================================================================== */
  67. /* define when mobile menu activates, here we are declearing (lg) so it targets the one after it */
  68. /* bootstrap reference xs: 0, sm: 544px, md: 768px, lg: 992px, xl: 1200px*/
  69. /* global var used for spacing*/
  70. /* Uniform Padding variable */
  71. /* Heads up! This is a global scoped variable - changing may impact the whole template */
  72. /* BOOTSTRAP OVERRIDES (bootstrap variables)
  73. ========================================================================== */
  74. /* usage: theme-colors("primary"); */
  75. /* forms */
  76. /*$input-height: calc(2.25rem + 1px); //I had to add this because the input gruops was having improper height for some reason... */
  77. /* links */
  78. /* checkbox */
  79. /*$custom-file-height-inner: calc(2.25rem - 1px);*/
  80. /* not part of bootstrap variable */
  81. /* custom checkbox */
  82. /* custom range */
  83. /* select */
  84. /* badge */
  85. /* cards */
  86. /*border radius*/
  87. /* alert */
  88. /* toast */
  89. /* breadcrumb */
  90. /* input button */
  91. /* nav link */
  92. /* nav, tabs, pills */
  93. /* tables */
  94. /* dropdowns */
  95. /* dropdowns sizes */
  96. /* popovers */
  97. /* tooltips */
  98. /* modal */
  99. /* reference guide
  100. http://www.standardista.com/px-to-rem-conversion-if-root-font-size-is-16px/
  101. 8px = 0.5rem
  102. 9px = 0.5625rem
  103. 10px = 0.625rem
  104. 11px = 0.6875rem
  105. 12px = 0.75rem
  106. 13px = 0.8125rem
  107. 14px = 0.875rem
  108. 15px = 0.9375rem
  109. 16px = 1rem (base)
  110. 17px = 1.0625rem
  111. 18px = 1.125rem
  112. 19px = 1.1875rem
  113. 20px = 1.25rem
  114. 21px = 1.3125rem
  115. 22px = 1.375rem
  116. 24px = 1.5rem
  117. 25px = 1.5625rem
  118. 26px = 1.625rem
  119. 28px = 1.75rem
  120. 30px = 1.875rem
  121. 32px = 2rem
  122. 34px = 2.125rem
  123. 36px = 2.25rem
  124. 38px = 2.375rem
  125. 40px = 2.5rem
  126. */
  127. /* Fonts */
  128. /* carousel */
  129. /* BASE VARS
  130. ========================================================================== */
  131. /* font vars below will auto change to rem values using function rem($value)*/
  132. /* 11px */
  133. /* 12px */
  134. /* 12.5px */
  135. /* 14px */
  136. /* 15px */
  137. /* 16px */
  138. /* 28px */
  139. /* Font Family
  140. ========================================================================== */
  141. /*hint: you can also try the font called 'Poppins' by replacing the font 'Roboto' */
  142. /* ANIMATIONS
  143. ========================================================================== */
  144. /* this addresses all animation related to nav hide to nav minify */
  145. /* Z-INDEX declearation
  146. ========================================================================== */
  147. /* we adjust bootstrap z-index to be higher than our higest z-index*/
  148. /* CUSTOM ICON PREFIX
  149. ========================================================================== */
  150. /* PRINT CSS (landscape or portrait)
  151. ========================================================================== */
  152. /* landscape or portrait */
  153. /* auto, letter */
  154. /* Common Element Variables
  155. ========================================================================== */
  156. /* Z-index decleartion "birds eye view"
  157. ========================================================================== */
  158. /* Components
  159. ========================================================================== */
  160. /* PAGE HEADER STUFF
  161. ========================================================================== */
  162. /* colors */
  163. /* height */
  164. /* logo */
  165. /* try not to go beywond the width of $main_nav_width value */
  166. /* you may need to change this depending on your logo design */
  167. /* adjust this as you see fit : left, right, center */
  168. /* icon font size (not button) */
  169. /* search input box */
  170. /* suggestion: #ccced0*/
  171. /* btn */
  172. /* dropdown: app list */
  173. /* badge */
  174. /* COMPONENTS & MODS */
  175. /* NAVIGATION STUFF
  176. Guide:
  177. aside.page-sidebar ($nav-width, $nav-background)
  178. .page-logo
  179. .primary-nav
  180. .info-card
  181. ul.nav-menu
  182. li
  183. a (parent level-0..., $nav-link-color, $nav-link-hover-color, $nav-link-hover-bg-color, $nav-link-hover-left-border-color)
  184. icon
  185. span
  186. collapse-sign
  187. ul.nav-menu-sub-one
  188. li
  189. a ($nav-level-1... $nav-sub-link-height)
  190. span
  191. collapse-sign
  192. ul.nav-menu-sub-two
  193. li
  194. a ($nav-level-2... $nav-sub-link-height)
  195. span
  196. p.nav-title ($nav-title-*...)
  197. ========================================================================== */
  198. /* main navigation */
  199. /* left panel */
  200. /* nav parent level-0 */
  201. /* nav icon sizes */
  202. /* badge default */
  203. /* all child */
  204. /* nav title */
  205. /* nav Minify */
  206. /* when the menu pops on hover */
  207. /* navigation Width */
  208. /* partial visibility of the menu */
  209. /* top navigation */
  210. /* nav Info Card (appears below the logo) */
  211. /* width is auto */
  212. /* nav DL labels for all child */
  213. /* will be pulled to left as a negative value */
  214. /* MISC Settings
  215. ========================================================================== */
  216. /* List Table */
  217. /* PAGE SETTINGS
  218. ========================================================================== */
  219. /* PAGE BREADCRUMB
  220. ========================================================================== */
  221. /* PAGE COMPONENT PANELS
  222. ========================================================================== */
  223. /* PAGE COMPONENT PROGRESSBARS
  224. ========================================================================== */
  225. /* PAGE COMPONENT MESSENGER
  226. ========================================================================== */
  227. /* FOOTER
  228. ========================================================================== */
  229. /* GLOBALS
  230. ========================================================================== */
  231. /* ACCESSIBILITIES */
  232. /* SHORTCUT BUTTON (appears on bottom right of the page) */
  233. @import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");
  234. body {
  235. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial;
  236. font-size: 0.8125rem;
  237. letter-spacing: 0.1px; }
  238. .page-content {
  239. color: #666666; }
  240. h1, h2, h3, h4, h5, h6 {
  241. line-height: 1.3;
  242. font-weight: 400; }
  243. strong {
  244. font-weight: 500; }
  245. h1 small,
  246. h2 small,
  247. h3 small,
  248. h4 small,
  249. h5 small,
  250. h6 small,
  251. .h1 small,
  252. .h2 small,
  253. .h3 small,
  254. .h4 small,
  255. .h5 small,
  256. .h6 small {
  257. font-weight: 300;
  258. display: block;
  259. font-size: 0.9375rem;
  260. line-height: 1.5;
  261. margin: 2px 0 1.5rem; }
  262. h2 small,
  263. h3 small,
  264. .h2 small,
  265. .h3 small {
  266. font-size: 0.9375rem; }
  267. h4 small,
  268. .h4 small {
  269. font-size: 0.875rem; }
  270. h5 small,
  271. h6 small,
  272. .h5 small,
  273. .h6 small {
  274. font-size: 0.8125rem; }
  275. /* contrast text */
  276. .text-contrast {
  277. color: #333333; }
  278. /* text-gradient */
  279. .text-gradient {
  280. background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #6e4e9e), color-stop(50%, #62468d), color-stop(75%, #0c7cd5), to(#0960a5));
  281. background: linear-gradient(180deg, #6e4e9e 25%, #62468d 50%, #0c7cd5 75%, #0960a5 100%);
  282. color: #886ab5;
  283. background-clip: text;
  284. text-fill-color: transparent;
  285. -webkit-background-clip: text;
  286. -webkit-text-fill-color: transparent;
  287. text-shadow: none; }
  288. /* looking for font size? Check _helpers.scss */
  289. /* PLACEHOLDER
  290. =============================================
  291. EXAMPLE:
  292. %bg-image {
  293. width: 100%;
  294. background-position: center center;
  295. background-size: cover;
  296. background-repeat: no-repeat;
  297. }
  298. .image-one {
  299. @extend %bg-image;
  300. background-image:url(/img/image-one.jpg");
  301. }
  302. RESULT:
  303. .image-one, .image-two {
  304. width: 100%;
  305. background-position: center center;
  306. background-size: cover;
  307. background-repeat: no-repeat;
  308. }
  309. */
  310. /*
  311. %shadow-hover {
  312. box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 0 2px rgba(0,0,0,0.24);
  313. transition: all 0.2s ease-in-out;
  314. &:hover {
  315. box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 -1px 6px rgba(0,0,0,0.23);
  316. }
  317. }
  318. */
  319. /*%fixed-header-shadow {
  320. @include box-shadow(0 2px 2px -1px rgba(0,0,0,.1));
  321. }*/
  322. /* %selected-dot {
  323. &:before {
  324. content: " ";
  325. display: block;
  326. border-radius: 50%;
  327. background: inherit;
  328. background-image: none;
  329. border: 2px solid rgba(0,0,0,0.2);
  330. position: absolute;
  331. top: 15px;
  332. left: 15px;
  333. height: 20px;
  334. width: 20px;
  335. }
  336. &:after {
  337. content: " ";
  338. height: inherit;
  339. width: inherit;
  340. border: 5px solid rgba(0,0,0,0.1);
  341. position: absolute;
  342. left: 0;
  343. top: 0;
  344. border-radius: 50%;
  345. }
  346. }*/
  347. /* patterns */
  348. /* Page Layout Starts below...
  349. ========================================================================== */
  350. html body {
  351. background: #faf8fb;
  352. /* NEW*/ }
  353. html body .blankpage-logo {
  354. padding: 20px 0 30px; }
  355. html body .blankpage-form-field {
  356. position: fixed;
  357. top: 45%;
  358. left: 50%;
  359. width: 320px;
  360. height: auto;
  361. -webkit-transform: translate(-50%, -50%);
  362. transform: translate(-50%, -50%); }
  363. html body .blankpage-form-field .card {
  364. margin: 0;
  365. padding: 13.5px 20px 15.5px;
  366. -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  367. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); }
  368. html body .blankpage-form-field .blankpage-btn {
  369. font-size: 1rem;
  370. font-weight: 400;
  371. padding: 10px 15px;
  372. margin: 10px 0 5px; }
  373. html body .blankpage-footer {
  374. padding: 10px 0;
  375. font-size: 0.75rem;
  376. color: #73579d; }
  377. html body .login-footer {
  378. color: rgba(255, 255, 255, 0.9);
  379. font-size: 0.6875rem; }
  380. html body video {
  381. position: fixed;
  382. top: 50%;
  383. left: 50%;
  384. min-width: 100%;
  385. min-height: 100%;
  386. width: auto;
  387. height: auto;
  388. z-index: -100;
  389. -webkit-transform: translateX(-50%) translateY(-50%);
  390. transform: translateX(-50%) translateY(-50%);
  391. background: url("../img/clouds.png") no-repeat;
  392. background-size: cover;
  393. -webkit-transition: 1s opacity;
  394. transition: 1s opacity; }
  395. @media screen and (max-device-width: 800px) {
  396. html body html {
  397. background: url("../img/clouds.png") #FFF no-repeat center center fixed; }
  398. html body #bgvid {
  399. display: none; } }
  400. /*# sourceMappingURL=page-login.css.map */