style.css 4.5 KB

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