verify.css 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. *{margin:0;padding:0;}
  2. body{
  3. align-items: center;
  4. }
  5. #bannerContainer{
  6. display: flex;
  7. flex-direction: column;
  8. align-items: center;
  9. width: 100%;
  10. position: absolute;
  11. margin-top: 15px;
  12. pointer-events: none;
  13. z-index: 100;
  14. }
  15. .banner{
  16. display: flex;
  17. width: 75%;
  18. height: 65px;
  19. margin: 10px auto;
  20. box-shadow: 0 0 10px black;
  21. border: 2px solid black;
  22. background: white;
  23. }
  24. .banner > div{
  25. display: flex;
  26. align-items: center;
  27. justify-content: center;
  28. width: 25%;
  29. color: white;
  30. }
  31. .banner > p{
  32. display: flex;
  33. align-items: center;
  34. font-size: 20px;
  35. font-weight: bold;
  36. width: 75%;
  37. padding-left: 10px;
  38. }
  39. .banner > button{
  40. background: none;
  41. border: none;
  42. height: 20px;
  43. position: relative;
  44. top: -10px;
  45. right: -10px;
  46. cursor: pointer;
  47. color: white;
  48. pointer-events: all;
  49. }
  50. .header{
  51. display: flex;
  52. justify-content: space-between;
  53. background: #001b2d;
  54. width: 100%;
  55. height: 75px;
  56. }
  57. .headerStart{
  58. display: flex;
  59. align-items:center;
  60. text-decoration: none;
  61. margin-left: 25px;
  62. width: 275px;
  63. }
  64. .headerStart img{
  65. max-height: 75%;
  66. }
  67. .headerLogo{
  68. color: white;
  69. font-size: 25px;
  70. margin-left: 10px;
  71. }
  72. .mobileHomeButton{
  73. display: none;
  74. }
  75. .headerEnd{
  76. display: flex;
  77. align-items: center;
  78. justify-content: flex-end;
  79. margin-right: 25px;
  80. }
  81. .headerEnd > *{
  82. margin-left: 20px;
  83. }
  84. .headerEnd a{
  85. color: rgb(255, 99, 107);
  86. }
  87. #loaderContainer{
  88. justify-content: center;
  89. align-items: center;
  90. width: 100vw;
  91. height: 100vh;
  92. background: rgba(0, 27, 45, 0.5);
  93. z-index: 2;
  94. position: fixed;
  95. }
  96. .loader{
  97. margin-bottom: 200px;
  98. margin-right: 100px;
  99. }
  100. .loader .outer{
  101. border: 10px solid rgba(255, 255, 255, 0);
  102. border-top: 10px solid rgba(255, 99, 107, 0.8);
  103. border-bottom: 10px solid rgba(255, 99, 107, 0.8);
  104. border-radius: 50%;
  105. height: 80px;
  106. width: 80px;
  107. animation: spin1 2s infinite;
  108. position: absolute;
  109. }
  110. .loader .mid{
  111. border: 10px solid rgba(255, 255, 255, 0);
  112. border-right: 10px solid rgba(0, 27, 45, 0.8);
  113. border-left: 10px solid rgba(0, 27, 45, 0.8);
  114. border-radius: 50%;
  115. height: 60px;
  116. width: 60px;
  117. margin: 10px 0 0 10px;
  118. animation: spin2 2s infinite;
  119. position: absolute;
  120. }
  121. .loader .inner{
  122. border: 10px solid rgba(255, 255, 255, 0);
  123. border-top: 10px solid rgba(179, 191, 209, 0.8);
  124. border-bottom: 10px solid rgba(179, 191, 209, 0.8);
  125. border-radius: 50%;
  126. height: 40px;
  127. width: 40px;
  128. margin: 20px 0 0 20px;
  129. animation: spin3 2s infinite;
  130. position: absolute;
  131. }
  132. .loader img{
  133. margin: 10px 0 0 10px;
  134. height: 70px;
  135. width: 80px;
  136. position: absolute;
  137. z-index: -1;
  138. animation: imgSpin 3s linear infinite;
  139. }
  140. @keyframes spin1{
  141. 0% { transform: rotate(0deg); }
  142. 100% { transform: rotate(360deg); }
  143. }
  144. @keyframes spin2{
  145. 0% { transform: rotate(0deg); }
  146. 100% { transform: rotate(720deg); }
  147. }
  148. @keyframes spin3{
  149. 0% { transform: rotate(0deg); }
  150. 100% { transform: rotate(1080deg); }
  151. }
  152. @keyframes imgSpin{
  153. 0% {
  154. transform: rotateY(0deg);
  155. }
  156. 100% {
  157. transform: rotateY(360deg);
  158. }
  159. }
  160. h1 {
  161. text-align: center;
  162. padding-bottom: 13px;
  163. }
  164. h3 {
  165. text-align: center;
  166. font-weight: 500;
  167. font-size: 20px;
  168. }
  169. button{
  170. outline: 0;
  171. }
  172. button::-moz-focus-inner{
  173. border: 0;
  174. }
  175. .link{
  176. cursor: pointer;
  177. color: gray;
  178. text-decoration: underline;
  179. text-align: center;
  180. font-size: 20px;
  181. }
  182. .link:hover {
  183. color: #ff636b;
  184. text-decoration: underline;
  185. cursor: pointer;
  186. }
  187. .button{
  188. background: rgb(0, 27, 45);
  189. border: none;
  190. text-decoration: none;
  191. padding: 10px 25px;
  192. color: rgb(255, 99, 107);
  193. cursor: pointer;
  194. text-align: center;
  195. font-size: 15px;
  196. min-width: 100px;
  197. margin: 5px;
  198. max-height: 52px;
  199. }
  200. .button:hover{
  201. background: rgb(179, 191, 209);
  202. }
  203. .button:active{
  204. background: rgb(240, 252, 255);
  205. }
  206. .dangerButton{
  207. display: initial;
  208. background: rgb(255, 99, 107);
  209. border: none;
  210. text-decoration: none;
  211. padding: 10px 25px;
  212. color: black;
  213. cursor: pointer;
  214. text-align: center;
  215. font-size: 15px;
  216. min-width: 100px;
  217. margin: 5px;
  218. max-height: 52px;
  219. }
  220. .dangerButton:hover{
  221. background: rgb(255, 129, 137);
  222. }
  223. .dangerButton:active{
  224. background: rgb(240, 252, 255);
  225. }
  226. .linkButton{
  227. background: none;
  228. border: none;
  229. text-decoration: underline;
  230. color: white;
  231. cursor: pointer;
  232. margin: 5px;
  233. font-size: 15px;
  234. }
  235. .public-buttons {
  236. position: inherit;
  237. align-self: center;
  238. margin-right: 39px;
  239. }
  240. .buttonDisabled{
  241. background: gray;
  242. text-decoration: none;
  243. border-radius: 10px;
  244. padding: 10px 5px;
  245. color: rgb(0, 27, 45);
  246. cursor: default;
  247. font-size: 25px;
  248. text-align: center;
  249. }
  250. .line-break{
  251. border: 1px solid rgb(255, 99, 107);
  252. margin: 30px 0;
  253. }
  254. @media screen and (max-width: 1400px){
  255. .button{
  256. font-size: 15px;
  257. }
  258. .header{
  259. height: 30px;
  260. }
  261. .headerStart{
  262. margin-left: 10px;
  263. }
  264. .headerEnd{
  265. font-size: 8px;
  266. }
  267. .headerLogo{
  268. white-space: nowrap;
  269. font-size: 10px;
  270. }
  271. .truncateLong{
  272. max-width: 100px;
  273. white-space: nowrap;
  274. overflow: hidden;
  275. text-overflow: ellipsis;
  276. }
  277. .mobileHide{
  278. display: none !important;
  279. }
  280. .headerStart{
  281. width: 0;
  282. }
  283. }
  284. .title{
  285. margin-top: 25px;
  286. font-size: 40px;
  287. }
  288. .text{
  289. font-size: 25px;
  290. text-align: center;
  291. }
  292. .form{
  293. border: none;
  294. background: none;
  295. width: 325px;
  296. padding: 0;
  297. }
  298. .email{
  299. font-size: 30px;
  300. margin-bottom: 15px;
  301. text-align: center;
  302. }
  303. .button{
  304. font-size: 25px;
  305. padding: 5px;
  306. }
  307. @media all and (max-width: 1400px){
  308. .title{
  309. font-size: 25px;
  310. padding: 5px;
  311. }
  312. .text{
  313. padding: 5px;
  314. }
  315. }