style.css 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. *{margin:0;padding:0;font-family:'Saira',sans-serif;}
  2. html, body{
  3. width: 100vw;
  4. max-width: 100%;
  5. }
  6. .header{
  7. display: flex;
  8. justify-content: space-between;
  9. width: 100%;
  10. background: rgb(0, 27, 45);
  11. height: 75px;
  12. padding: 0 25px;
  13. box-sizing: border-box;
  14. }
  15. .headerStart{
  16. display: flex;
  17. align-items: center;
  18. text-decoration: none;
  19. }
  20. .headerLogo{
  21. color: white;
  22. font-size: 25px;
  23. margin-left: 10px;
  24. }
  25. .headerStart img{
  26. max-height: 90%;
  27. }
  28. .headerEnd{
  29. display: flex;
  30. align-items: center;
  31. height: 100%;
  32. color: white;
  33. }
  34. .link{
  35. margin: 10px;
  36. color: white;
  37. }
  38. .enterButton{
  39. background: rgb(179, 191, 209);
  40. border: none;
  41. text-decoration: none;
  42. padding: 10px 25px;
  43. color: black;
  44. cursor: pointer;
  45. text-align: center;
  46. font-size: 15px;
  47. min-width: 100px;
  48. margin: 5px;
  49. max-height: 52px;
  50. }
  51. .enterButton:hover{
  52. background: rgb(240, 252, 255);
  53. color:black;
  54. }
  55. .enterButton:active{
  56. background: rgb(0, 27, 45);
  57. }
  58. .main-background{
  59. display: flex;
  60. align-items: center;
  61. justify-content: center;
  62. background-image: url("/shared/images/backgroundImg01.jpg");
  63. background-repeat: no-repeat;
  64. background-size: cover;
  65. height: 88vh;
  66. width: 100%;
  67. color: rgb(0, 27, 45);
  68. }
  69. .logo-text{
  70. display: flex;
  71. flex-direction: column;
  72. align-items: center;
  73. max-width: 50vw;
  74. }
  75. .logo-text img{
  76. max-height: 25vh;
  77. margin-bottom: 35px;
  78. }
  79. .logo-text p{
  80. font-weight: bold;
  81. font-size: 25px;
  82. color: rgb(255, 99, 107);
  83. text-align: center;
  84. }
  85. .more-info{
  86. width: 100%;
  87. padding: 75px;
  88. background:rgb(0, 27, 45);
  89. color: white;
  90. box-sizing: border-box;
  91. text-align: justify;
  92. font-size: 25px;
  93. }
  94. .more-info > *{
  95. margin: 15px;
  96. }
  97. .line-break{
  98. width: 100%;
  99. border: 1px solid rgb(255, 99, 107);
  100. margin: 30px 0;
  101. }
  102. .more-info h1{
  103. color: rgb(255, 99, 107);
  104. text-align: center;
  105. font-size: 45px;
  106. margin: 25px 0;
  107. }
  108. ul > *{
  109. margin: 15px 0;
  110. }
  111. ul span{
  112. color: rgb(255, 99, 107);
  113. }
  114. li{
  115. font-size: 20px;
  116. }
  117. #login{
  118. display: flex;
  119. flex-direction: column;
  120. justify-content: space-between;
  121. align-items: center;
  122. height: 100vh;
  123. }
  124. form{
  125. display: flex;
  126. flex-direction: column;
  127. padding: 25px;
  128. background: rgb(240, 252, 255);
  129. border: 1px solid black;
  130. min-width: 500px;
  131. }
  132. form > *{
  133. margin: 5px;
  134. }
  135. form h1{
  136. text-align: center;
  137. }
  138. label{
  139. display: flex;
  140. flex-direction: column;
  141. }
  142. .submitButton{
  143. background: rgb(0, 27, 45);
  144. border: none;
  145. text-decoration: none;
  146. padding: 10px 25px;
  147. color: white;
  148. cursor: pointer;
  149. text-align: center;
  150. font-size: 15px;
  151. min-width: 100px;
  152. margin: 5px;
  153. max-height: 52px;
  154. }
  155. .submitButton:hover{
  156. background: rgb(179, 191, 209);
  157. color:black;
  158. }
  159. .submitButton:active{
  160. background: rgb(240, 252, 255);
  161. }
  162. form a{
  163. text-align: center;
  164. color: gray;
  165. margin: 5px;
  166. font-size: 20px;
  167. }
  168. .footer{
  169. display: flex;
  170. flex-direction: column;
  171. align-items: center;
  172. padding: 10px;
  173. background: rgb(240, 252, 255);
  174. width: 100%;
  175. box-sizing: border-box;
  176. }
  177. .footer div > *{
  178. margin: 0 10px;
  179. }
  180. #register{
  181. display: flex;
  182. flex-direction: column;
  183. justify-content: space-between;
  184. align-items: center;
  185. height: 100vh;
  186. }
  187. #agreement{
  188. flex-direction: row;
  189. }
  190. #agreement p{
  191. margin-left: 10px;
  192. }
  193. .customText{
  194. text-align: center;
  195. }
  196. #squareButton{
  197. display: flex;
  198. align-items: center;
  199. justify-content: center;
  200. border: 1px solid black;
  201. background: white;
  202. color: black;
  203. height: 44px;
  204. cursor: pointer;
  205. }
  206. #squareButton:hover{
  207. color: white;
  208. background: black;
  209. }
  210. .banner{
  211. display: flex;
  212. width: 75%;
  213. height: 65px;
  214. margin: 10px auto;
  215. box-shadow: 0 0 10px black;
  216. border: 2px solid black;
  217. background: white;
  218. position: fixed;
  219. }
  220. .banner > div{
  221. display: flex;
  222. align-items: center;
  223. justify-content: center;
  224. width: 25%;
  225. color: white;
  226. }
  227. .banner > p{
  228. display: flex;
  229. align-items: center;
  230. font-size: 20px;
  231. font-weight: bold;
  232. width: 75%;
  233. padding-left: 10px;
  234. }
  235. .banner > button{
  236. background: none;
  237. border: none;
  238. height: 20px;
  239. position: relative;
  240. top: -10px;
  241. right: -10px;
  242. cursor: pointer;
  243. color: white;
  244. pointer-events: all;
  245. }