style.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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. #logInButton, #joinButton{
  62. color: white;
  63. }
  64. /* Public Strand */
  65. #publicStrand{
  66. display: flex;
  67. flex-direction: column;
  68. }
  69. .main-background{
  70. display: flex;
  71. align-items: center;
  72. justify-content: center;
  73. background-image: url("/shared/images/backgroundImg01.jpg");
  74. background-repeat: no-repeat;
  75. background-size: cover;
  76. height: 88vh;
  77. width: 100%;
  78. color: rgb(0, 27, 45);
  79. }
  80. .public-buttons{
  81. position: absolute;
  82. right: 50px;
  83. top: 80px;
  84. }
  85. .public-buttons *{
  86. margin: 10px;
  87. }
  88. .logo-text{
  89. display: flex;
  90. flex-direction: column;
  91. justify-content: center;
  92. align-items: center;
  93. max-width: 50vw;
  94. text-align: center;
  95. }
  96. .logo-text img{
  97. max-height: 25vh;
  98. margin-bottom: 50px;
  99. }
  100. .logo-text p{
  101. font-weight: bold;
  102. font-size: 25px;
  103. color: rgb(255, 99, 107);
  104. }
  105. .more-info{
  106. background: rgb(0, 27, 45);
  107. color: rgb(201, 201, 201);
  108. text-align: center;
  109. padding: 75px;
  110. border-top: 5px solid black;
  111. }
  112. .more-info h1{
  113. color: rgb(255, 99, 107);
  114. margin: 25px;
  115. font-size: 45px;
  116. }
  117. .more-info p{
  118. font-size: 25px;
  119. color: rgb(201, 201, 201);
  120. text-align: justify;
  121. padding: 10px;
  122. }
  123. .more-info li{
  124. font-size: 20px;
  125. color: rgb(201, 201, 201);
  126. text-align: justify;
  127. padding: 10px;
  128. }
  129. .more-info span{
  130. font-weight: bold;
  131. color: rgb(255, 99, 107);
  132. }
  133. /*
  134. Login Page
  135. */
  136. #login{
  137. display: flex;
  138. flex-direction: column;
  139. align-items: center;
  140. background-image: url("/shared/images/backgroundImg01.jpg");
  141. background-repeat: no-repeat;
  142. background-size: cover;
  143. height: 91.5vh;
  144. }
  145. /*
  146. RegisterPage
  147. */
  148. #register{
  149. display: flex;
  150. flex-direction: column;
  151. align-items: center;
  152. background-image: url("/shared/images/backgroundImg01.jpg");
  153. background-repeat: no-repeat;
  154. background-size: cover;
  155. height: 91.5vh;
  156. }
  157. #agreement{
  158. display: flex;
  159. }
  160. #agreement input{
  161. margin-right: 15px;
  162. }
  163. /*
  164. Footer Partial
  165. */
  166. .spacer{
  167. flex: 1;
  168. }
  169. .footer{
  170. display: flex;
  171. flex-direction: column;
  172. align-items: center;
  173. padding: 10px;
  174. background: rgb(240, 252, 255);
  175. width: 100%;
  176. box-sizing: border-box;
  177. }
  178. .footer > *{
  179. margin: 5px;
  180. }
  181. .footer div > *{
  182. margin: 0 25px;
  183. }
  184. @media screen and (max-width: 600px){
  185. .logo-text img{
  186. max-height: 20vh;
  187. }
  188. .logo-text p{
  189. font-size: 20px;
  190. }
  191. .more-info{
  192. padding: 25px;
  193. }
  194. .public-buttons{
  195. right: 25vw;
  196. }
  197. }