style.css 4.6 KB

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