shared.css 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  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. /*
  10. Header
  11. */
  12. .header{
  13. display: flex;
  14. justify-content: space-between;
  15. background: #001b2d;
  16. width: 100%;
  17. height: 75px;
  18. }
  19. .headerStart{
  20. display: flex;
  21. align-items:center;
  22. text-decoration: none;
  23. margin-left: 25px;
  24. width: 275px;
  25. }
  26. .headerStart img{
  27. max-height: 75%;
  28. }
  29. .headerLogo{
  30. color: white;
  31. font-size: 25px;
  32. margin-left: 10px;
  33. }
  34. .mobileHomeButton{
  35. display: none;
  36. }
  37. .headerEnd{
  38. display: flex;
  39. align-items: center;
  40. justify-content: flex-end;
  41. margin-right: 25px;
  42. }
  43. .headerEnd > *{
  44. margin-left: 20px;
  45. }
  46. .headerEnd a{
  47. color: rgb(255, 99, 107);
  48. }
  49. /* Loader */
  50. #loaderContainer{
  51. justify-content: center;
  52. align-items: center;
  53. width: 100vw;
  54. height: 100vh;
  55. background: rgba(0, 27, 45, 0.5);
  56. z-index: 2;
  57. position: fixed;
  58. }
  59. .loader{
  60. margin-bottom: 200px;
  61. margin-right: 100px;
  62. }
  63. .loader .outer{
  64. border: 10px solid rgba(255, 255, 255, 0);
  65. border-top: 10px solid rgba(255, 99, 107, 0.8);
  66. border-bottom: 10px solid rgba(255, 99, 107, 0.8);
  67. border-radius: 50%;
  68. height: 80px;
  69. width: 80px;
  70. animation: spin1 2s infinite;
  71. position: absolute;
  72. }
  73. .loader .mid{
  74. border: 10px solid rgba(255, 255, 255, 0);
  75. border-right: 10px solid rgba(0, 27, 45, 0.8);
  76. border-left: 10px solid rgba(0, 27, 45, 0.8);
  77. border-radius: 50%;
  78. height: 60px;
  79. width: 60px;
  80. margin: 10px 0 0 10px;
  81. animation: spin2 2s infinite;
  82. position: absolute;
  83. }
  84. .loader .inner{
  85. border: 10px solid rgba(255, 255, 255, 0);
  86. border-top: 10px solid rgba(179, 191, 209, 0.8);
  87. border-bottom: 10px solid rgba(179, 191, 209, 0.8);
  88. border-radius: 50%;
  89. height: 40px;
  90. width: 40px;
  91. margin: 20px 0 0 20px;
  92. animation: spin3 2s infinite;
  93. position: absolute;
  94. }
  95. .loader img{
  96. margin: 10px 0 0 10px;
  97. height: 70px;
  98. width: 80px;
  99. position: absolute;
  100. z-index: -1;
  101. animation: imgSpin 3s linear infinite;
  102. }
  103. @keyframes spin1{
  104. 0% { transform: rotate(0deg); }
  105. 100% { transform: rotate(360deg); }
  106. }
  107. @keyframes spin2{
  108. 0% { transform: rotate(0deg); }
  109. 100% { transform: rotate(720deg); }
  110. }
  111. @keyframes spin3{
  112. 0% { transform: rotate(0deg); }
  113. 100% { transform: rotate(1080deg); }
  114. }
  115. @keyframes imgSpin{
  116. 0% {
  117. transform: rotateY(0deg);
  118. }
  119. 100% {
  120. transform: rotateY(360deg);
  121. }
  122. }
  123. /* General style that should apply to all pages */
  124. h1 {
  125. text-align: center;
  126. padding-bottom: 13px;
  127. }
  128. h3 {
  129. text-align: center;
  130. font-weight: 500;
  131. font-size: 20px;
  132. }
  133. button{
  134. outline: 0;
  135. }
  136. button::-moz-focus-inner{
  137. border: 0;
  138. }
  139. .link{
  140. cursor: pointer;
  141. color: gray;
  142. text-decoration: underline;
  143. text-align: center;
  144. font-size: 20px;
  145. }
  146. .link:hover {
  147. color: #ff636b;
  148. text-decoration: underline;
  149. cursor: pointer;
  150. }
  151. .button{
  152. display: initial;
  153. background: rgb(0, 27, 45);
  154. border: none;
  155. text-decoration: none;
  156. padding: 2px 10px;
  157. color: rgb(255, 99, 107);
  158. cursor: pointer;
  159. text-align: center;
  160. font-size: 20px;
  161. font-weight: bold;
  162. min-width: 100px;
  163. margin: 5px;
  164. max-height: 52px;
  165. }
  166. .button:hover{
  167. background: rgb(179, 191, 209);
  168. }
  169. .button:active{
  170. background: rgb(240, 252, 255);
  171. }
  172. .linkButton{
  173. background: none;
  174. border: none;
  175. text-decoration: underline;
  176. color: white;
  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. .buttonDisabled{
  187. background: gray;
  188. text-decoration: none;
  189. border-radius: 10px;
  190. padding: 10px 5px;
  191. color: rgb(0, 27, 45);
  192. cursor: default;
  193. font-size: 25px;
  194. text-align: center;
  195. }
  196. .line-break{
  197. border: 1px solid rgb(255, 99, 107);
  198. margin: 30px 0;
  199. }
  200. .strand, .action{
  201. display: none;
  202. }
  203. .strand{
  204. transition: width 1s linear;
  205. }
  206. /*
  207. Banner
  208. */
  209. #bannerContainer{
  210. display: flex;
  211. flex-direction: column;
  212. align-items: center;
  213. width: 100%;
  214. position: absolute;
  215. margin-top: 15px;
  216. pointer-events: none;
  217. z-index: 100;
  218. }
  219. .banner{
  220. display: flex;
  221. width: 75%;
  222. height: 65px;
  223. margin: 10px auto;
  224. box-shadow: 0 0 10px black;
  225. border: 2px solid black;
  226. background: white;
  227. }
  228. .banner > div{
  229. display: flex;
  230. align-items: center;
  231. justify-content: center;
  232. width: 25%;
  233. color: white;
  234. }
  235. .banner > p{
  236. display: flex;
  237. align-items: center;
  238. font-size: 20px;
  239. font-weight: bold;
  240. width: 75%;
  241. padding-left: 10px;
  242. }
  243. .banner > button{
  244. background: none;
  245. border: none;
  246. height: 20px;
  247. position: relative;
  248. top: -10px;
  249. right: -10px;
  250. cursor: pointer;
  251. color: white;
  252. pointer-events: all;
  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. }