style.css 5.6 KB

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