signup-modal.component.scss 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. .modal-dialog{
  2. max-width: 800px;
  3. .modal-content{
  4. .modal-header{
  5. }
  6. .modal-body{
  7. padding:0 !important;
  8. .form-group.box{
  9. background-color: transparent;
  10. width: 100%;
  11. height: 50px;
  12. cursor: pointer;
  13. webkit-box-shadow: none;
  14. box-shadow: none;
  15. padding: 0;
  16. .form-control {
  17. border: none;
  18. border: 2px solid #00AFD7;
  19. border-radius: 0;
  20. -webkit-box-shadow: none;
  21. height: 50px;
  22. font-size: 16px;
  23. color: #00AFD7 !important;
  24. font-weight: bold;
  25. padding: .375rem 0;
  26. height: 50px;
  27. border-radius: 0;
  28. background-color: transparent;
  29. padding-left: 70px;
  30. padding-top: 20px;
  31. background-size: 30px;
  32. background-repeat: no-repeat;
  33. background-position: 30px center;
  34. width: 60px;
  35. background-image: none !important;
  36. padding: 0;
  37. font-size: 24px;
  38. /* line-height: 1; */
  39. text-align: center;
  40. }
  41. input{
  42. float: left;
  43. margin: 5px;
  44. }
  45. input[type=number]::-webkit-inner-spin-button,
  46. input[type=number]::-webkit-outer-spin-button {
  47. -webkit-appearance: none;
  48. margin: 0;
  49. }
  50. }
  51. .row {
  52. height: 290px;
  53. .col{
  54. height:100%;
  55. float: left;
  56. }
  57. .logo{
  58. border-right:1px solid #ccc;
  59. padding: 25px 25px;
  60. text-align: center;
  61. img{
  62. width:150px;
  63. }
  64. }
  65. .main_content{
  66. float: left;
  67. max-width: 100%;
  68. height: 100%;
  69. width: 100%;
  70. overflow: hidden;
  71. position: relative;
  72. .content{
  73. padding: 30px;
  74. position: absolute;
  75. width: 100%;
  76. max-width: 100%;
  77. h2{
  78. color:#00AFD7;
  79. font-size: 18px;
  80. padding-left: 40px;
  81. }
  82. p{
  83. font-size: 16px;
  84. padding-left: 40px;
  85. }
  86. h6{
  87. font-size: 16px;
  88. padding-left: 40px;
  89. color: #00AFD7;
  90. // font-style: italic;
  91. }
  92. h5{
  93. font-size: 28px;
  94. padding-left: 40px;
  95. color: #00AFD7;
  96. // font-style: italic;
  97. }
  98. .input_left {
  99. height: 90px;
  100. width: 100%;
  101. padding-left: 40px;
  102. form{
  103. width: 70%;
  104. float: left;
  105. }
  106. .resent{
  107. width:30%;
  108. float: left;
  109. text-align: center;
  110. margin-top: 20px;
  111. a{
  112. text-decoration: underline;
  113. cursor: pointer;
  114. }
  115. }
  116. }
  117. .btn_center {
  118. width: 373px;
  119. /* margin: auto;*/
  120. padding-left: 32px;
  121. margin-top: 28px;
  122. }
  123. }
  124. .success{
  125. text-align: center;
  126. img{
  127. width: 100px;
  128. margin: 20px;
  129. }
  130. h2{
  131. color:green;
  132. }
  133. }
  134. }
  135. .end_success{
  136. padding: 30px;
  137. .logo{
  138. // padding: 75px 25px;
  139. }
  140. }
  141. .section1{
  142. left: 0;
  143. }
  144. .section2{
  145. left: 100%;
  146. }
  147. .section3{
  148. left: 100%;
  149. }
  150. .section1.section_close{
  151. left:-100%;
  152. }
  153. .section2.section_open{
  154. left:0;
  155. }
  156. .section3.section_open{
  157. left:0;
  158. }
  159. .section_open {
  160. /* for chrome and safari*/
  161. -webkit-animation-duration: 1s;
  162. -webkit-animation-name: sectionin;
  163. /*for firefox*/
  164. -moz-animation-duration: 1s;
  165. -moz-animation-name: sectionin;
  166. /* for opera*/
  167. -o-animation-duration: 1s;
  168. -o-animation-name: sectionin;
  169. /* Standard syntax*/
  170. animation-duration: 1s;
  171. animation-name: sectionin;
  172. }
  173. @-webkit-keyframes sectionin {
  174. from {
  175. margin-left: 100%;
  176. width: 100%;
  177. }
  178. to {
  179. margin-left: 0%;
  180. width: 100%;
  181. }
  182. }
  183. @-moz-keyframes sectionin {
  184. from {
  185. margin-left: 100%;
  186. width: 100%;
  187. }
  188. to {
  189. margin-left: 0%;
  190. width: 100%;
  191. }
  192. }
  193. @-o-keyframes sectionin {
  194. from {
  195. margin-left: 100%;
  196. width: 100%;
  197. }
  198. to {
  199. margin-left: 0%;
  200. width: 100%;
  201. }
  202. }
  203. @keyframes sectionin {
  204. from {
  205. margin-left: 100%;
  206. width: 100%;
  207. }
  208. to {
  209. margin-left: 0%;
  210. width: 100%;
  211. }
  212. }
  213. .section_close {
  214. /* for chrome and safari*/
  215. -webkit-animation-duration: 1s;
  216. -webkit-animation-name: sectionout;
  217. /*for firefox*/
  218. -moz-animation-duration: 1s;
  219. -moz-animation-name: sectionout;
  220. /* for opera*/
  221. -o-animation-duration: 1s;
  222. -o-animation-name: sectionout;
  223. /* Standard syntax*/
  224. animation-duration: 1s;
  225. animation-name: sectionout;
  226. }
  227. @-webkit-keyframes sectionout {
  228. from {
  229. margin-left: 100%;
  230. width: 80%;
  231. }
  232. to {
  233. margin-left: 0%;
  234. width: 80%;
  235. }
  236. }
  237. @-moz-keyframes sectionout {
  238. from {
  239. margin-left: 100%;
  240. width: 80%;
  241. }
  242. to {
  243. margin-left: 0%;
  244. width: 80%;
  245. }
  246. }
  247. @-o-keyframes sectionout {
  248. from {
  249. margin-left: 100%;
  250. width: 100%;
  251. }
  252. to {
  253. margin-left: 0%;
  254. width: 80%;
  255. }
  256. }
  257. @keyframes sectionout {
  258. from {
  259. margin-left: 100%;
  260. width: 80%;
  261. }
  262. to {
  263. margin-left: 0%;
  264. width: 80%;
  265. }
  266. }
  267. }
  268. }
  269. }
  270. }
  271. .left72{
  272. padding-left: 72px;
  273. }
  274. .mt34{
  275. margin-top: 34px;
  276. }