shared.css 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  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. .dangerButton{
  173. display: initial;
  174. background: rgb(255, 99, 107);
  175. border: none;
  176. text-decoration: none;
  177. padding: 2px 10px;
  178. color: black;
  179. cursor: pointer;
  180. text-align: center;
  181. font-size: 20px;
  182. font-weight: bold;
  183. min-width: 100px;
  184. margin: 5px;
  185. max-height: 52px;
  186. }
  187. .dangerButton:hover{
  188. background: rgb(255, 129, 137);
  189. }
  190. .dangerButton:active{
  191. background: rgb(240, 252, 255);
  192. }
  193. .linkButton{
  194. background: none;
  195. border: none;
  196. text-decoration: underline;
  197. color: white;
  198. cursor: pointer;
  199. margin: 5px;
  200. font-size: 15px;
  201. }
  202. .public-buttons {
  203. position: inherit;
  204. align-self: center;
  205. margin-right: 39px;
  206. }
  207. .buttonDisabled{
  208. background: gray;
  209. text-decoration: none;
  210. border-radius: 10px;
  211. padding: 10px 5px;
  212. color: rgb(0, 27, 45);
  213. cursor: default;
  214. font-size: 25px;
  215. text-align: center;
  216. }
  217. .line-break{
  218. border: 1px solid rgb(255, 99, 107);
  219. margin: 30px 0;
  220. }
  221. .strand, .action{
  222. display: none;
  223. }
  224. .strand{
  225. transition: width 1s linear;
  226. }
  227. /*
  228. Banner
  229. */
  230. #bannerContainer{
  231. display: flex;
  232. flex-direction: column;
  233. align-items: center;
  234. width: 100%;
  235. position: absolute;
  236. margin-top: 15px;
  237. pointer-events: none;
  238. z-index: 100;
  239. }
  240. .banner{
  241. display: flex;
  242. width: 75%;
  243. height: 65px;
  244. margin: 10px auto;
  245. box-shadow: 0 0 10px black;
  246. border: 2px solid black;
  247. background: white;
  248. }
  249. .banner > div{
  250. display: flex;
  251. align-items: center;
  252. justify-content: center;
  253. width: 25%;
  254. color: white;
  255. }
  256. .banner > p{
  257. display: flex;
  258. align-items: center;
  259. font-size: 20px;
  260. font-weight: bold;
  261. width: 75%;
  262. padding-left: 10px;
  263. }
  264. .banner > button{
  265. background: none;
  266. border: none;
  267. height: 20px;
  268. position: relative;
  269. top: -10px;
  270. right: -10px;
  271. cursor: pointer;
  272. color: white;
  273. pointer-events: all;
  274. }
  275. @media screen and (max-width: 1400px){
  276. .button{
  277. font-size: 15px;
  278. }
  279. .header{
  280. height: 30px;
  281. }
  282. .headerStart{
  283. margin-left: 10px;
  284. }
  285. .headerEnd{
  286. font-size: 8px;
  287. }
  288. .headerLogo{
  289. white-space: nowrap;
  290. font-size: 10px;
  291. }
  292. .truncateLong{
  293. max-width: 100px;
  294. white-space: nowrap;
  295. overflow: hidden;
  296. text-overflow: ellipsis;
  297. }
  298. .mobileHide{
  299. display: none !important;
  300. }
  301. .headerStart{
  302. width: 0;
  303. }
  304. }