shared.css 6.5 KB

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