landing.css 4.0 KB

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