landing.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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{
  72. display: none;
  73. align-items: center;
  74. justify-content: center;
  75. background-image: url("/shared/images/backgroundImg01.jpg");
  76. background-repeat: no-repeat;
  77. background-size: cover;
  78. height: 91.5vh;
  79. }
  80. #loginStrand form{
  81. display: flex;
  82. flex-direction: column;
  83. justify-content: space-between;
  84. align-items: center;
  85. border: 2px solid rgb(201, 201, 201);
  86. background: rgb(240, 252, 255);
  87. color: rgb(255, 99, 107);
  88. padding: 25px;
  89. border-radius: 10px;
  90. }
  91. #loginStrand form > *{
  92. margin: 10px 0;
  93. }
  94. /* Register Strand */
  95. #registerStrand{
  96. display: none;
  97. flex-direction: column;
  98. align-items: center;
  99. }
  100. #registerStrand > *{
  101. margin: 10px;
  102. }
  103. #agreement{
  104. display: flex;
  105. }
  106. @media screen and (max-width: 600px){
  107. .logo-text img{
  108. max-height: 20vh;
  109. }
  110. .logo-text p{
  111. font-size: 20px;
  112. }
  113. .more-info{
  114. padding: 25px;
  115. }
  116. .public-buttons{
  117. right: 25vw;
  118. }
  119. }
  120. #posChoiceStrand{
  121. display: none;
  122. flex-direction: column;
  123. align-items: center;
  124. }
  125. .cards{
  126. display: flex;
  127. justify-content: space-around;
  128. }
  129. .cards > *{
  130. display: flex;
  131. flex-direction: column;
  132. justify-content: space-around;
  133. text-align: center;
  134. width: 300px;
  135. height: 200px;
  136. border-radius: 25px;
  137. border: 2px solid black;
  138. padding: 50px;
  139. cursor: pointer;
  140. margin: 25px;
  141. box-shadow: 0 0 20px black;
  142. text-decoration: none;
  143. }
  144. .cards > * img{
  145. max-height: 75%;
  146. }
  147. .cards > *:hover{
  148. box-shadow: 0 0 25px #ff636b;
  149. }
  150. .cards > *:active{
  151. box-shadow: 0 0 10px #ff636b;
  152. }
  153. .cards p{
  154. margin-top: 25px;
  155. font-size: 25px;
  156. font-weight: bold;
  157. color: black;
  158. }
  159. .cards img{
  160. margin: auto 10px;
  161. }