style.css 5.3 KB

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