style.css 5.6 KB

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