style.css 4.1 KB

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