shared.css 6.6 KB

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