shared.css 6.9 KB

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