landing.css 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. /* Public Strand */
  2. #publicStrand{
  3. display: flex;
  4. flex-direction: column;
  5. }
  6. .main-background{
  7. display: flex;
  8. align-items: center;
  9. justify-content: center;
  10. background-image: url("/shared/images/backgroundImg01.jpg");
  11. background-repeat: no-repeat;
  12. background-size: cover;
  13. height: 88vh;
  14. width: 100%;
  15. color: rgb(0, 27, 45);
  16. }
  17. .public-buttons{
  18. position: absolute;
  19. right: 50px;
  20. top: 80px;
  21. }
  22. .public-buttons *{
  23. margin: 10px;
  24. }
  25. .logo-text{
  26. display: flex;
  27. flex-direction: column;
  28. justify-content: center;
  29. align-items: center;
  30. max-width: 50vw;
  31. text-align: center;
  32. }
  33. .logo-text img{
  34. max-height: 25vh;
  35. margin-bottom: 50px;
  36. }
  37. .logo-text p{
  38. font-weight: bold;
  39. font-size: 25px;
  40. color: rgb(255, 99, 107);
  41. }
  42. .more-info{
  43. background: rgb(0, 27, 45);
  44. color: rgb(201, 201, 201);
  45. text-align: center;
  46. padding: 75px;
  47. border-top: 5px solid black;
  48. }
  49. .more-info h1{
  50. color: rgb(255, 99, 107);
  51. margin: 25px;
  52. font-size: 45px;
  53. }
  54. .more-info p{
  55. font-size: 25px;
  56. color: rgb(201, 201, 201);
  57. text-align: justify;
  58. padding: 10px;
  59. }
  60. .more-info li{
  61. font-size: 20px;
  62. color: rgb(201, 201, 201);
  63. text-align: justify;
  64. padding: 10px;
  65. }
  66. .more-info span{
  67. font-weight: bold;
  68. color: rgb(255, 99, 107);
  69. }
  70. /* Login Strand */
  71. #loginStrand, #registerStrand{
  72. display: none;
  73. flex-direction: column;
  74. align-items: center;
  75. justify-content: center;
  76. background-image: url("/shared/images/backgroundImg01.jpg");
  77. background-repeat: no-repeat;
  78. background-size: cover;
  79. height: 91.5vh;
  80. }
  81. #registerStrand form{
  82. margin: 0;
  83. }
  84. #registerStrand form > *{
  85. margin: 2px;
  86. }
  87. /* ----The Checkbox and Inputs Start---- */
  88. /* The container */
  89. .container {
  90. display: block;
  91. position: relative;
  92. padding-left: 35px;
  93. margin-bottom: 12px;
  94. cursor: pointer;
  95. font-size: 16px;
  96. -webkit-user-select: none;
  97. -moz-user-select: none;
  98. -ms-user-select: none;
  99. user-select: none;
  100. }
  101. /* Hide the browser's default checkbox */
  102. .container input {
  103. position: absolute;
  104. opacity: 0;
  105. cursor: pointer;
  106. height: 0;
  107. width: 0;
  108. }
  109. /* Create a custom checkbox */
  110. .checkmark {
  111. position: absolute;
  112. top: 0;
  113. left: 0;
  114. height: 24px;
  115. width: 24px;
  116. border: 1px solid#ccc;
  117. border-radius: 4px;
  118. background-color: rgb(255, 255, 255);
  119. }
  120. /* On mouse-over, add a grey background color */
  121. .checkmark:hover {
  122. background-color: #ccc;
  123. }
  124. /* When the checkbox is checked, add a blue background */
  125. .container input:checked ~ .checkmark {
  126. background-color: #5A6F7D;
  127. border: 1px solid#5A6F7D;
  128. }
  129. /* Create the checkmark/indicator (hidden when not checked) */
  130. .checkmark:after {
  131. content: "";
  132. position: absolute;
  133. display: none;
  134. }
  135. /* Show the checkmark when checked */
  136. .container input:checked ~ .checkmark:after {
  137. display: block;
  138. }
  139. /* Style the checkmark/indicator */
  140. .container .checkmark:after {
  141. left: 9px;
  142. top: 5px;
  143. width: 5px;
  144. height: 10px;
  145. border: solid white;
  146. border-width: 0 3px 3px 0;
  147. -webkit-transform: rotate(45deg);
  148. -ms-transform: rotate(45deg);
  149. transform: rotate(45deg);
  150. }
  151. /* ----The Checkbox and Inputs End---- */
  152. /* Inputs Start */
  153. input[type=text], select {
  154. width: 100%;
  155. padding: 12px 20px;
  156. margin: 8px 0;
  157. display: inline-block;
  158. border: 1px solid #ccc;
  159. border-radius: 4px;
  160. box-sizing: border-box;
  161. padding-bottom: 16px;
  162. font-size: 16px;
  163. }
  164. input[type=text], input[type=password], select {
  165. width: 100%;
  166. padding: 12px 20px;
  167. margin: 8px 0;
  168. display: inline-block;
  169. border: 1px solid #ccc;
  170. border-radius: 4px;
  171. box-sizing: border-box;
  172. font-size: 16px;
  173. }
  174. input[type=submit] {
  175. width: 100%;
  176. background-color:rgb(255, 99, 107);
  177. color: white;
  178. padding: 14px 20px;
  179. margin: 8px 0;
  180. border: none;
  181. border-radius: 4px;
  182. cursor: pointer;
  183. font-size: 22px;
  184. margin-top: 30px;
  185. }
  186. input[type=submit]:hover {
  187. background: rgb(243, 77, 86);
  188. color: white;
  189. }
  190. input[type=text]:focus, input[type=password]:focus {
  191. border: 2px solid #555;
  192. outline: none;
  193. }
  194. input[type=button] {
  195. background-color: rgb(255, 99, 107);
  196. }
  197. input[type=button]:hover {
  198. background-color:rgb(0, 27, 45);
  199. }
  200. .input-error{
  201. border-color: red;
  202. }
  203. /* Inputs End */
  204. @media screen and (max-width: 600px){
  205. .logo-text img{
  206. max-height: 20vh;
  207. }
  208. .logo-text p{
  209. font-size: 20px;
  210. }
  211. .more-info{
  212. padding: 25px;
  213. }
  214. .public-buttons{
  215. right: 25vw;
  216. }
  217. }