page-login-alt.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  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. /* GULP WARNINGS */
  234. @import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");
  235. body {
  236. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial;
  237. font-size: 0.8125rem;
  238. letter-spacing: 0.1px; }
  239. .page-content {
  240. color: #666666; }
  241. h1, h2, h3, h4, h5, h6 {
  242. line-height: 1.3;
  243. font-weight: 400; }
  244. strong {
  245. font-weight: 500; }
  246. h1 small,
  247. h2 small,
  248. h3 small,
  249. h4 small,
  250. h5 small,
  251. h6 small,
  252. .h1 small,
  253. .h2 small,
  254. .h3 small,
  255. .h4 small,
  256. .h5 small,
  257. .h6 small {
  258. font-weight: 300;
  259. display: block;
  260. font-size: 0.9375rem;
  261. line-height: 1.5;
  262. margin: 2px 0 1.5rem; }
  263. h2 small,
  264. h3 small,
  265. .h2 small,
  266. .h3 small {
  267. font-size: 0.9375rem; }
  268. h4 small,
  269. .h4 small {
  270. font-size: 0.875rem; }
  271. h5 small,
  272. h6 small,
  273. .h5 small,
  274. .h6 small {
  275. font-size: 0.8125rem; }
  276. /* contrast text */
  277. .text-contrast {
  278. color: #333333; }
  279. /* text-gradient */
  280. .text-gradient {
  281. background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #6e4e9e), color-stop(50%, #62468d), color-stop(75%, #0c7cd5), to(#0960a5));
  282. background: linear-gradient(180deg, #6e4e9e 25%, #62468d 50%, #0c7cd5 75%, #0960a5 100%);
  283. color: #886ab5;
  284. background-clip: text;
  285. text-fill-color: transparent;
  286. -webkit-background-clip: text;
  287. -webkit-text-fill-color: transparent;
  288. text-shadow: none; }
  289. /* looking for font size? Check _helpers.scss */
  290. /* PLACEHOLDER
  291. =============================================
  292. EXAMPLE:
  293. %bg-image {
  294. width: 100%;
  295. background-position: center center;
  296. background-size: cover;
  297. background-repeat: no-repeat;
  298. }
  299. .image-one {
  300. @extend %bg-image;
  301. background-image:url(/img/image-one.jpg");
  302. }
  303. RESULT:
  304. .image-one, .image-two {
  305. width: 100%;
  306. background-position: center center;
  307. background-size: cover;
  308. background-repeat: no-repeat;
  309. }
  310. */
  311. /*
  312. %shadow-hover {
  313. box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 0 2px rgba(0,0,0,0.24);
  314. transition: all 0.2s ease-in-out;
  315. &:hover {
  316. box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 -1px 6px rgba(0,0,0,0.23);
  317. }
  318. }
  319. */
  320. /*%fixed-header-shadow {
  321. @include box-shadow(0 2px 2px -1px rgba(0,0,0,.1));
  322. }*/
  323. /* %selected-dot {
  324. &:before {
  325. content: " ";
  326. display: block;
  327. border-radius: 50%;
  328. background: inherit;
  329. background-image: none;
  330. border: 2px solid rgba(0,0,0,0.2);
  331. position: absolute;
  332. top: 15px;
  333. left: 15px;
  334. height: 20px;
  335. width: 20px;
  336. }
  337. &:after {
  338. content: " ";
  339. height: inherit;
  340. width: inherit;
  341. border: 5px solid rgba(0,0,0,0.1);
  342. position: absolute;
  343. left: 0;
  344. top: 0;
  345. border-radius: 50%;
  346. }
  347. }*/
  348. /* patterns */
  349. /* Page Layout Starts below...
  350. ========================================================================== */
  351. html body {
  352. background: #faf8fb;
  353. /* NEW*/ }
  354. html body .blankpage-logo {
  355. padding: 20px 0 30px; }
  356. html body .blankpage-form-field {
  357. position: fixed;
  358. top: 45%;
  359. left: 50%;
  360. width: 320px;
  361. height: auto;
  362. -webkit-transform: translate(-50%, -50%);
  363. transform: translate(-50%, -50%); }
  364. html body .blankpage-form-field .card {
  365. margin: 0;
  366. padding: 13.5px 20px 15.5px;
  367. -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  368. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); }
  369. html body .blankpage-form-field .blankpage-btn {
  370. font-size: 1rem;
  371. font-weight: 400;
  372. padding: 10px 15px;
  373. margin: 10px 0 5px; }
  374. html body .blankpage-footer {
  375. padding: 10px 0;
  376. font-size: 0.75rem;
  377. color: #73579d; }
  378. html body .login-footer {
  379. color: rgba(255, 255, 255, 0.9);
  380. font-size: 0.6875rem; }
  381. html body video {
  382. position: fixed;
  383. top: 50%;
  384. left: 50%;
  385. min-width: 100%;
  386. min-height: 100%;
  387. width: auto;
  388. height: auto;
  389. z-index: -100;
  390. -webkit-transform: translateX(-50%) translateY(-50%);
  391. transform: translateX(-50%) translateY(-50%);
  392. background: url("../img/clouds.png") no-repeat;
  393. background-size: cover;
  394. -webkit-transition: 1s opacity;
  395. transition: 1s opacity; }
  396. @media screen and (max-device-width: 800px) {
  397. html body html {
  398. background: url("../img/clouds.png") #FFF no-repeat center center fixed; }
  399. html body #bgvid {
  400. display: none; } }
  401. /*# sourceMappingURL=page-login-alt.css.map */