style.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. /*custom font*/
  2. @import url(https://fonts.googleapis.com/css?family=Montserrat);
  3. /*basic reset*/
  4. * {margin: 0; padding: 0;}
  5. html {
  6. height: 100%;
  7. /*Image only BG fallback*/
  8. /*background = gradient + image pattern combo*/
  9. background:
  10. linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6));
  11. }
  12. body {
  13. font-family: montserrat, arial, verdana;
  14. }
  15. /*form styles*/
  16. #msform {
  17. width: 400px;
  18. margin: 50px auto;
  19. text-align: center;
  20. position: relative;
  21. }
  22. #msform fieldset {
  23. background: white;
  24. border: 0 none;
  25. border-radius: 3px;
  26. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  27. padding: 20px 30px;
  28. box-sizing: border-box;
  29. width: 80%;
  30. margin: 0 10%;
  31. /*stacking fieldsets above each other*/
  32. position: relative;
  33. }
  34. /*Hide all except first fieldset*/
  35. #msform fieldset:not(:first-of-type) {
  36. display: none;
  37. }
  38. /*inputs*/
  39. #msform input[type="text"], #msform textarea {
  40. padding: 15px;
  41. border: 1px solid #ccc;
  42. border-radius: 3px;
  43. margin-bottom: 10px;
  44. width: 100%;
  45. box-sizing: border-box;
  46. font-family: montserrat;
  47. color: #2C3E50;
  48. font-size: 13px;
  49. }
  50. /*buttons*/
  51. #msform .action-button {
  52. width: 100px;
  53. background: #27AE60;
  54. font-weight: bold;
  55. color: white;
  56. border: 0 none;
  57. border-radius: 1px;
  58. cursor: pointer;
  59. padding: 10px 5px;
  60. margin: 10px 5px;
  61. }
  62. #msform .action-button:hover, #msform .action-button:focus {
  63. box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
  64. }
  65. /*headings*/
  66. .fs-title {
  67. font-size: 15px;
  68. text-transform: uppercase;
  69. color: #2C3E50;
  70. margin-bottom: 10px;
  71. }
  72. .fs-subtitle {
  73. font-weight: normal;
  74. font-size: 13px;
  75. color: #666;
  76. margin-bottom: 20px;
  77. }
  78. /*progressbar*/
  79. #progressbar {
  80. margin-bottom: 30px;
  81. overflow: hidden;
  82. /*CSS counters to number the steps*/
  83. counter-reset: step;
  84. }
  85. #progressbar li {
  86. list-style-type: none;
  87. color: white;
  88. text-transform: uppercase;
  89. font-size: 9px;
  90. width: 33.33%;
  91. float: left;
  92. position: relative;
  93. }
  94. #progressbar li:before {
  95. content: counter(step);
  96. counter-increment: step;
  97. width: 20px;
  98. line-height: 20px;
  99. display: block;
  100. font-size: 10px;
  101. color: #333;
  102. background: white;
  103. border-radius: 3px;
  104. margin: 0 auto 5px auto;
  105. }
  106. /*progressbar connectors*/
  107. #progressbar li:after {
  108. content: '';
  109. width: 100%;
  110. height: 2px;
  111. background: white;
  112. position: absolute;
  113. left: -50%;
  114. top: 9px;
  115. z-index: -1; /*put it behind the numbers*/
  116. }
  117. #progressbar li:first-child:after {
  118. /*connector not needed before the first step*/
  119. content: none;
  120. }
  121. /*marking active/completed steps green*/
  122. /*The number of the step and the connector before it = green*/
  123. #progressbar li.active:before, #progressbar li.active:after{
  124. background: #27AE60;
  125. color: white;
  126. }
  127. p.error-text {
  128. bottom: -23px;
  129. left: 24px;
  130. color: rgba(255, 0, 0, .7);
  131. font-size: .6em;
  132. }
  133. select {
  134. padding: 15px;
  135. border: 1px solid #ccc;
  136. border-radius: 3px;
  137. margin-bottom: 10px;
  138. width: 100%;
  139. box-sizing: border-box;
  140. font-family: montserrat;
  141. color: #2C3E50;
  142. font-size: 13px;
  143. background-color: transparent;
  144. }
  145. .left_align {
  146. font-size: 18px;
  147. text-align: left;
  148. }
  149. #overlay {
  150. position: fixed; /* Sit on top of the page content */
  151. display: none;
  152. width: 100%;
  153. height: 100%;
  154. top: 0;
  155. left: 0;
  156. right: 0;
  157. bottom: 0;
  158. background-color: rgba(0,0,0,0.5);
  159. z-index: 2;
  160. cursor: pointer;
  161. }
  162. .thankyou {
  163. margin: auto;
  164. width: 260px;
  165. height: 160px;
  166. margin-top: 190px;
  167. background: #fff;
  168. padding: 15px 20px;
  169. line-height: 25px;
  170. border-radius: 4px;
  171. text-align: center;
  172. box-shadow: -1px 5px 32px 7px rgba(0, 0, 0, 0.5);
  173. }
  174. .thankyou input {
  175. margin-top: 40px;
  176. }
  177. .thankyou h3 {
  178. font-size: 3em;
  179. font-weight: 700;
  180. color: #21ba45;
  181. line-height: 50px;
  182. }