shared.css 6.3 KB

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