Advertisement
Guest User

Untitled

a guest
Dec 18th, 2020
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.74 KB | None | 0 0
  1. /**************** LOGIN ******************/
  2.  
  3. .mfp-bg {
  4. top: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 100%;
  8. z-index: 999;
  9. overflow: hidden;
  10. position: fixed;
  11. background: #0b0b0b;
  12. opacity: 0.8;
  13. }
  14. .mfp-wrap {
  15. top: 0;
  16. left: 0;
  17. width: 100%;
  18. height: 100%;
  19. z-index: 999;
  20. position: fixed;
  21. outline: none !important;
  22. -webkit-backface-visibility: hidden;
  23. }
  24. .mfp-container {
  25. text-align: center;
  26. position: absolute;
  27. width: 100%;
  28. height: 100%;
  29. left: 0;
  30. top: 0;
  31. padding: 0 8px;
  32. box-sizing: border-box;
  33. }
  34. .mfp-container:before {
  35. content: '';
  36. display: inline-block;
  37. height: 100%;
  38. vertical-align: middle;
  39. }
  40. .mfp-auto-cursor .mfp-content {
  41. cursor: auto;
  42. }
  43. .mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  44. width: 100%;
  45. cursor: auto;
  46. }
  47. .mfp-content {
  48. position: relative;
  49. display: inline-block;
  50. vertical-align: middle;
  51. margin: 0 auto;
  52. text-align: left;
  53. z-index: 999;
  54. }
  55. .mfp-s-ready .mfp-preloader {
  56. display: none;
  57. }
  58. .mfp-preloader {
  59. color: #CCC;
  60. position: absolute;
  61. top: 50%;
  62. width: auto;
  63. text-align: center;
  64. margin-top: -0.8em;
  65. left: 8px;
  66. right: 8px;
  67. z-index: 999;
  68. }
  69. .login-popup {
  70. -webkit-box-shadow: 0 0 20px rgba(0,0,0,.4);
  71. box-shadow: 0 0 20px rgba(0,0,0,.4);
  72. background-color: #fff;
  73. -webkit-border-radius: 20px;
  74. -moz-border-radius: 20px;
  75. border-radius: 20px;
  76. position: relative;
  77. padding: 37px 50px 50px 325px;
  78. width: auto;
  79. max-width: 645px;
  80. margin: 20px auto;
  81. overflow: hidden;
  82. }
  83. .login-popup:before {
  84. background-image: url(https://i.imgur.com/2JZxwd5.png);
  85. background-position: -435px -67px;
  86. left: -95px;
  87. }
  88. .login-popup:before, .login-popup:after {
  89. -webkit-border-radius: 192px/290px;
  90. -moz-border-radius: 192px/290px;
  91. border-radius: 192px/290px;
  92. width: 385px;
  93. height: 580px;
  94. position: absolute;
  95. content: "";
  96. top: 0;
  97. display: block;
  98. bottom: 0;
  99. margin: auto;
  100. }
  101. .login-popup h3 {
  102. margin-bottom: 30px;
  103. font-size: 20px;
  104. line-height: 26px;
  105. border-bottom: 1px solid rgba(0,0,0,.2);
  106. padding-bottom: 10px;
  107. margin-bottom: 25px;
  108. margin-top: 0;
  109. }
  110. .h3, h3 {
  111. border-color: #3793ff;
  112. border-style: solid;
  113. border-width: 0 0 1px;
  114. color: #1a1a1a;
  115. font-family: Roboto, sans-serif;
  116. font-size: 1.6rem;
  117. font-weight: 400;
  118. letter-spacing: .3px;
  119. margin-bottom: 12px;
  120. padding-bottom: 3px;
  121. }
  122. .login-popup .login-form .username-input, .login-popup .login-form .password-input {
  123. position: relative;
  124. display: block;
  125. }
  126. label {
  127. color: #1a1a1a;
  128. cursor: pointer;
  129. margin-right: 18px;
  130. }
  131. .login-popup .login-form .rounded-input {
  132. padding-right: 40px;
  133. margin-bottom: 15px;
  134. background-color: #fff;
  135. -webkit-border-radius: 48px;
  136. -moz-border-radius: 48px;
  137. border-radius: 48px;
  138. padding: 11px 24px;
  139. display: block;
  140. font-family: poppins,Arial,sans-serif;
  141. font-weight: 300;
  142. font-size: 14px;
  143. color: #333;
  144. border: 1px solid #d4d4d4;
  145. width: 100%;
  146. height: 47px;
  147. -webkit-transition: border-color .2s;
  148. transition: border-color .2s;
  149. }
  150. .login-popup .login-form .username-input i, .login-popup .login-form .password-input i {
  151. font-size: 18px;
  152. font-weight: 700;
  153. color: #d4d4d4;
  154. position: absolute;
  155. top: 13px;
  156. right: 18px;
  157. cursor: text;
  158. display: block;
  159. -webkit-transition: color .2s;
  160. transition: color .2s;
  161. }
  162. .login-popup .login-form .username-input i:before, .login-popup .login-form .password-input i:before {
  163. font-size: 18px;
  164. }
  165. .fa-user:before {
  166. content: "\f007";
  167. }
  168. .fa, .fas {
  169. font-family: "Font Awesome 5 Pro";
  170. font-weight: 900;
  171. }
  172. .fa, .fab, .fad, .fal, .far, .fas {
  173. -moz-osx-font-smoothing: grayscale;
  174. -webkit-font-smoothing: antialiased;
  175. display: inline-block;
  176. font-style: normal;
  177. font-variant: normal;
  178. text-rendering: auto;
  179. line-height: 1;
  180. }
  181. input[type="radio"]:checked, input[type="checkbox"]:checked {
  182. background-color: #107cc9;
  183. color: #fff;
  184. }
  185. input[type="checkbox"] {
  186. border-radius: 3px;
  187. }
  188. input[type="radio"], input[type="checkbox"] {
  189. -webkit-appearance: none;
  190. -moz-appearance: none;
  191. appearance: none;
  192. display: inline-block;
  193. position: relative;
  194. background-color: #f1f1f1;
  195. color: #666;
  196. height: 15px;
  197. width: 15px;
  198. border: 0;
  199. cursor: pointer;
  200. margin-right: 5px;
  201. outline: none;
  202. box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 0 2px rgba(0,0,0,0.1);
  203. }
  204. input[type="radio"] ~ label, input[type="checkbox"] ~ label {
  205. font: 15px/1.7 'Open Sans', sans-serif;
  206. color: #333;
  207. -webkit-font-smoothing: antialiased;
  208. -moz-osx-font-smoothing: grayscale;
  209. cursor: pointer;
  210. vertical-align: middle;
  211. }
  212. .rounded-button.login {
  213. background-color: #15253d;
  214. }
  215. .login-popup .rounded-button {
  216. -webkit-border-radius: 48px;
  217. -moz-border-radius: 48px;
  218. border-radius: 48px;
  219. padding: 11px 24px;
  220. text-decoration: none;
  221. font-weight: 600;
  222. font-size: 14px;
  223. text-transform: uppercase;
  224. cursor: pointer;
  225. height: 47px;
  226. line-height: 21px;
  227. text-shadow: none;
  228. text-align: center;
  229. -webkit-transition: background-color .2s,color .2s;
  230. transition: background-color .2s,color .2s;
  231. display: block;
  232. width: 100%;
  233. color: #fff;
  234. }
  235. .mfp-close-btn-in .mfp-close {
  236. color: #333;
  237. }
  238. button.mfp-close, button.mfp-arrow {
  239. overflow: visible;
  240. cursor: pointer;
  241. background: transparent;
  242. border: 0;
  243. -webkit-appearance: none;
  244. display: block;
  245. outline: none;
  246. padding: 0;
  247. z-index: 999;
  248. box-shadow: none;
  249. touch-action: manipulation;
  250. }
  251. .mfp-close {
  252. width: 44px;
  253. height: 44px;
  254. line-height: 44px;
  255. position: absolute;
  256. right: 0;
  257. top: 0;
  258. text-decoration: none;
  259. text-align: center;
  260. opacity: 0.65;
  261. padding: 0 0 18px 10px;
  262. color: #FFF;
  263. font-style: normal;
  264. font-size: 28px;
  265. font-family: Arial, Baskerville, monospace;
  266. }
  267. .login-popup::after {
  268. background-image: url(https://i.imgur.com/Y6SFLhc.png);
  269. background-position: 72% center;
  270. background-repeat: no-repeat;
  271. left: -95px;
  272. background-size: 170px;
  273. }
  274.  
  275. .login-popup:before, .login-popup:after {
  276. -webkit-border-radius: 192px/290px;
  277. -moz-border-radius: 192px/290px;
  278. border-radius: 192px/290px;
  279. width: 385px;
  280. height: 580px;
  281. position: absolute;
  282. content: "";
  283. top: 0;
  284. display: block;
  285. bottom: 0;
  286. margin: auto;
  287. }
  288. .login-pop-up {
  289. display: none;
  290. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement