style.css 4.4 KB

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