style.css 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. /*custom font*/
  2. @import url(https://fonts.googleapis.com/css?family=Montserrat);
  3. /*basic reset*/
  4. * {margin: 0; padding: 0;}
  5. html {
  6. min-height: 100%;
  7. height: auto;
  8. /*Image only BG fallback*/
  9. /*background = gradient + image pattern combo*/
  10. background:
  11. linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6));
  12. }
  13. body {
  14. font-family: montserrat, arial, verdana;
  15. }
  16. .ml {
  17. margin-left: 10px;
  18. }
  19. .mr {
  20. margin-right: 10px;
  21. }
  22. .mb {
  23. margin-bottom: 12px;
  24. }
  25. /*form styles*/
  26. .img_logo {
  27. display: block;
  28. margin: 20px auto;
  29. }
  30. .notice_card {
  31. box-sizing: border-box;
  32. width: 80%;
  33. margin: 0 10%;
  34. margin-bottom: 1.5rem;
  35. background: white;
  36. border: 0 none;
  37. border-radius: 3px;
  38. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  39. padding: 10px 20px;
  40. line-height: 1.5rem;
  41. }
  42. /*form styles*/
  43. #msform {
  44. min-width: 370px;
  45. max-width: 1000px;
  46. margin: 50px auto;
  47. text-align: center;
  48. position: relative;
  49. }
  50. #msform fieldset {
  51. background: white;
  52. border: 0 none;
  53. border-radius: 3px;
  54. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  55. padding: 20px 30px;
  56. box-sizing: border-box;
  57. width: 80%;
  58. margin: 0 10%;
  59. /*stacking fieldsets above each other*/
  60. position: relative;
  61. }
  62. /*Hide all except first fieldset*/
  63. #msform fieldset:not(:first-of-type) {
  64. display: none;
  65. }
  66. /*inputs*/
  67. #msform input[type="text"], #msform textarea, #msform input[type="email"] {
  68. padding: 15px;
  69. border: 1px solid #ccc;
  70. border-radius: 3px;
  71. margin-bottom: 16px;
  72. width: 100%;
  73. box-sizing: border-box;
  74. font-family: montserrat;
  75. color: #2C3E50;
  76. font-size: 13px;
  77. }
  78. /*buttons*/
  79. #msform .action-button {
  80. width: 100px;
  81. background: #27AE60;
  82. font-weight: bold;
  83. color: white;
  84. border: 0 none;
  85. border-radius: 1px;
  86. cursor: pointer;
  87. padding: 10px 5px;
  88. margin: 10px 5px;
  89. }
  90. #msform .action-button:hover, #msform .action-button:focus {
  91. box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
  92. }
  93. /*headings*/
  94. .fs-title {
  95. font-size: 15px;
  96. text-transform: uppercase;
  97. color: #2C3E50;
  98. margin-bottom: 10px;
  99. }
  100. .fs-subtitle {
  101. display: inline-block;
  102. font-weight: normal;
  103. font-size: 13px;
  104. color: #666;
  105. margin-bottom: 20px;
  106. padding-bottom: 3px;
  107. border-bottom: 2px solid #27AE60;
  108. }
  109. .fs-label {
  110. display: block;
  111. text-align: left;
  112. margin-bottom: 8px;
  113. }
  114. .fs-label > i {
  115. margin-right: 3px;
  116. }
  117. /*progressbar*/
  118. #progressbar {
  119. margin-bottom: 30px;
  120. overflow: hidden;
  121. /*CSS counters to number the steps*/
  122. counter-reset: step;
  123. }
  124. #progressbar li {
  125. list-style-type: none;
  126. color: white;
  127. text-transform: uppercase;
  128. font-size: 9px;
  129. width: 33.33%;
  130. float: left;
  131. position: relative;
  132. }
  133. #progressbar li:before {
  134. content: counter(step);
  135. counter-increment: step;
  136. width: 20px;
  137. line-height: 20px;
  138. display: block;
  139. font-size: 10px;
  140. color: #333;
  141. background: white;
  142. border-radius: 3px;
  143. margin: 0 auto 5px auto;
  144. }
  145. /*progressbar connectors*/
  146. #progressbar li:after {
  147. content: '';
  148. width: 100%;
  149. height: 2px;
  150. background: white;
  151. position: absolute;
  152. left: -50%;
  153. top: 9px;
  154. z-index: -1; /*put it behind the numbers*/
  155. }
  156. #progressbar li:first-child:after {
  157. /*connector not needed before the first step*/
  158. content: none;
  159. }
  160. /*marking active/completed steps green*/
  161. /*The number of the step and the connector before it = green*/
  162. #progressbar li.active:before, #progressbar li.active:after{
  163. background: #27AE60;
  164. color: white;
  165. }
  166. p.error-text {
  167. bottom: -23px;
  168. left: 24px;
  169. color: rgba(255, 0, 0, .7);
  170. font-size: .6em;
  171. }
  172. select {
  173. padding: 15px;
  174. border: 1px solid #ccc;
  175. border-radius: 3px;
  176. margin-bottom: 10px;
  177. width: 100%;
  178. box-sizing: border-box;
  179. font-family: montserrat;
  180. color: #2C3E50;
  181. font-size: 13px;
  182. background-color: transparent;
  183. }
  184. .left_align {
  185. font-size: 18px;
  186. text-align: left;
  187. }
  188. #overlay {
  189. position: fixed; /* Sit on top of the page content */
  190. display: none;
  191. width: 100%;
  192. height: 100%;
  193. top: 0;
  194. left: 0;
  195. right: 0;
  196. bottom: 0;
  197. background-color: rgba(0,0,0,0.5);
  198. z-index: 2;
  199. cursor: pointer;
  200. }
  201. .thankyou {
  202. margin: auto;
  203. width: 260px;
  204. height: 160px;
  205. margin-top: 190px;
  206. background: #fff;
  207. padding: 15px 20px;
  208. line-height: 25px;
  209. border-radius: 4px;
  210. text-align: center;
  211. box-shadow: -1px 5px 32px 7px rgba(0, 0, 0, 0.5);
  212. }
  213. .thankyou input {
  214. margin-top: 40px;
  215. }
  216. .thankyou h3 {
  217. font-size: 2rem;
  218. font-weight: 700;
  219. color: #21ba45;
  220. line-height: 2.5rem;
  221. margin-bottom: 1.5rem;
  222. }
  223. .check_button {
  224. display: none;
  225. }
  226. .fs-label-type {
  227. background: transparent;
  228. padding: 5px;
  229. border: 1px solid black;
  230. border-radius: 5px;
  231. display: inline-block;
  232. }
  233. .check_button:checked + .fs-label-type{
  234. background-color: #27AE60;
  235. color: white;
  236. padding: 5px;
  237. border: 1px solid #27AE60;
  238. border-radius: 5px;
  239. }
  240. input[type="checkbox"] {
  241. display: none;
  242. }
  243. .fs-label-info {
  244. background: transparent;
  245. padding: 5px;
  246. border: 1px solid black;
  247. border-radius: 5px;
  248. display: inline-block;
  249. margin-bottom: 8px;
  250. }
  251. input[type="checkbox"]:checked + .fs-label-info {
  252. background-color: #27AE60;
  253. color: white;
  254. padding: 5px;
  255. border: 1px solid #27AE60;
  256. border-radius: 5px;
  257. }
  258. .btn-exit {
  259. padding: .5rem .75rem;
  260. background-color: transparent;
  261. border: 1px solid black;
  262. margin-top: .3rem;
  263. }