document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. html {
  2.     height: 100%;
  3. }
  4. body {
  5.     height: 100%;
  6.     margin: 0;
  7.     background-repeat: no-repeat;
  8.     background-attachment: fixed;
  9. }
  10.  
  11. /* Text Align */
  12. .text-c {
  13.     text-align: center;
  14. }
  15. .text-l {
  16.     text-align: left;
  17. }
  18. .text-r {
  19.     text-align: right
  20. }
  21. .text-j {
  22.     text-align: justify;
  23. }
  24.  
  25. /* Text Color */
  26. .text-whitesmoke {
  27.     color: whitesmoke
  28. }
  29. .text-darkyellow {
  30.     color: #5f5f5f;
  31. }
  32.  
  33. /* Lines */
  34.  
  35. .line-b {
  36.     border-bottom: 1px solid rgb(51, 139, 255) !important;
  37. }
  38.  
  39. /* Buttons */
  40. .button {
  41.     border-radius: 3px;
  42. }
  43. .form-button {
  44.     background-color: rgb(51, 139, 255);
  45.     border-color: rgb(51, 139, 255);
  46.     color: #e6e6e6;
  47. }
  48. .form-button:hover,
  49. .form-button:focus,
  50. .form-button:active,
  51. .form-button.active,
  52. .form-button:active:focus,
  53. .form-button:active:hover,
  54. .form-button.active:hover,
  55. .form-button.active:focus {
  56.     background-color: rgb(30, 101, 255);
  57.     border-color: rgb(30, 101, 255);
  58.     color: #e6e6e6;
  59. }
  60. .button-l {
  61.     width: 100% !important;
  62. }
  63.  
  64. /* Margins g(global) - l(left) - r(right) - t(top) - b(bottom) */
  65.  
  66. .margin-g {
  67.     margin: 15px;
  68. }
  69. .margin-g-sm {
  70.     margin: 10px;
  71. }
  72. .margin-g-md {
  73.     margin: 20px;
  74. }
  75. .margin-g-lg {
  76.     margin: 30px;
  77. }
  78.  
  79. .margin-l {
  80.     margin-left: 15px;
  81. }
  82. .margin-l-sm {
  83.     margin-left: 10px;
  84. }
  85. .margin-l-md {
  86.     margin-left: 20px;
  87. }
  88. .margin-l-lg {
  89.     margin-left: 30px;
  90. }
  91.  
  92. .margin-r {
  93.     margin-right: 15px;
  94. }
  95. .margin-r-sm {
  96.     margin-right: 10px;
  97. }
  98. .margin-r-md {
  99.     margin-right: 20px;
  100. }
  101. .margin-r-lg {
  102.     margin-right: 30px;
  103. }
  104.  
  105. .margin-t {
  106.     margin-top: 15px;
  107. }
  108. .margin-t-sm {
  109.     margin-top: 10px;
  110. }
  111. .margin-t-md {
  112.     margin-top: 20px;
  113. }
  114. .margin-t-lg {
  115.     margin-top: 30px;
  116. }
  117.  
  118. .margin-b {
  119.     margin-bottom: 15px;
  120. }
  121. .margin-b-sm {
  122.     margin-bottom: 10px;
  123. }
  124. .margin-b-md {
  125.     margin-bottom: 20px;
  126. }
  127. .margin-b-lg {
  128.     margin-bottom: 30px;
  129. }
  130.  
  131. /* Bootstrap Form Control Extension */
  132.  
  133. .form-control,
  134. .border-line {
  135.     background-color: #ffffff;
  136.     background-image: none;
  137.     border: 1px solid #ffffff;
  138.     border-radius: 1px;
  139.     color: inherit;
  140.     display: block;
  141.     padding: 6px 12px;
  142.     transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  143.     width: 100%;
  144. }
  145. .form-control:focus,
  146. .border-line:focus {
  147.     border-color: #3e7df3;
  148.     background-color: #ffffff;
  149.     color: #1b1b1b;
  150. }
  151. .form-control,
  152. .form-control:focus {
  153.     box-shadow: none;
  154. }
  155. .form-control::-webkit-input-placeholder { color: #BDBDBD; }
  156.  
  157. /* Container */
  158.  
  159. .container-content {
  160.     background-color: #ffe05865;
  161.     color: inherit;
  162.     padding: 15px 20px 20px 20px;
  163.     border-color: #ffe05865;
  164.     border-image: none;
  165.     border-style: solid solid none;
  166.     border-width: 1px 0;
  167. }
  168.  
  169. /* Backgrounds */
  170.  
  171. .main-bg {
  172.  
  173.     background: #cdadff;
  174.     background: linear-gradient( #83a0ff, #ff8bb7, #8305d6);
  175. }
  176.  
  177. /* Login & Register Pages*/
  178.  
  179. .login-container {
  180.     max-width: 400px;
  181.     z-index: 100;
  182.     margin: 0 auto;
  183.     padding-top: 100px;
  184. }
  185. .login.login-container {
  186.     width: 300px;
  187. }
  188. .wrapper.login-container {
  189.     margin-top: 140px;
  190. }
  191. .logo-badge {
  192.     color: #e6e6e6;
  193.     font-size: 80px;
  194.     font-weight: 800;
  195.     letter-spacing: -10px;
  196.     margin-bottom: 0;
  197. }
');