landing.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. #publicStrand{
  2. display: flex;
  3. flex-direction: column;
  4. }
  5. .main-background{
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. background-image: url("/shared/images/backgroundImg01.jpg");
  10. background-repeat: no-repeat;
  11. background-size: cover;
  12. height: 88vh;
  13. width: 100%;
  14. color: rgb(0, 27, 45);
  15. }
  16. .public-buttons{
  17. position: absolute;
  18. right: 50px;
  19. top: 80px;
  20. }
  21. .public-buttons *{
  22. margin: 10px;
  23. }
  24. .logo-text{
  25. display: flex;
  26. flex-direction: column;
  27. justify-content: center;
  28. align-items: center;
  29. max-width: 50vw;
  30. text-align: center;
  31. }
  32. .logo-text img{
  33. max-height: 25vh;
  34. margin-bottom: 50px;
  35. }
  36. .logo-text p{
  37. font-weight: bold;
  38. font-size: 25px;
  39. color: rgb(255, 99, 107);
  40. }
  41. .more-info{
  42. background: rgb(0, 27, 45);
  43. color: rgb(201, 201, 201);
  44. text-align: center;
  45. padding: 75px;
  46. border-top: 5px solid black;
  47. }
  48. .more-info h1{
  49. color: rgb(255, 99, 107);
  50. margin: 25px;
  51. font-size: 45px;
  52. }
  53. .more-info p{
  54. font-size: 25px;
  55. color: rgb(201, 201, 201);
  56. text-align: justify;
  57. padding: 10px;
  58. }
  59. .more-info li{
  60. font-size: 20px;
  61. color: rgb(201, 201, 201);
  62. text-align: justify;
  63. padding: 10px;
  64. }
  65. .more-info span{
  66. font-weight: bold;
  67. color: rgb(255, 99, 107);
  68. }
  69. #loginStrand{
  70. display: none;
  71. align-items: center;
  72. justify-content: center;
  73. background-image: url("/shared/images/backgroundImg01.jpg");
  74. background-repeat: no-repeat;
  75. background-size: cover;
  76. height: 91.5vh;
  77. }
  78. #loginStrand form{
  79. display: flex;
  80. flex-direction: column;
  81. justify-content: space-between;
  82. align-items: center;
  83. border: 2px solid rgb(201, 201, 201);
  84. background: rgb(240, 252, 255);
  85. color: rgb(255, 99, 107);
  86. padding: 25px;
  87. border-radius: 10px;
  88. }
  89. #loginStrand form > *{
  90. margin: 10px 0;
  91. }
  92. @media screen and (max-width: 600px){
  93. .logo-text img{
  94. max-height: 20vh;
  95. }
  96. .logo-text p{
  97. font-size: 20px;
  98. }
  99. .more-info{
  100. padding: 25px;
  101. }
  102. .public-buttons{
  103. right: 25vw;
  104. }
  105. }
  106. #posChoiceStrand{
  107. display: none;
  108. flex-direction: column;
  109. align-items: center;
  110. }
  111. .cards{
  112. display: flex;
  113. justify-content: space-around;
  114. }
  115. .cards > *{
  116. display: flex;
  117. flex-direction: column;
  118. justify-content: space-around;
  119. text-align: center;
  120. width: 300px;
  121. height: 200px;
  122. border-radius: 25px;
  123. border: 2px solid black;
  124. padding: 50px;
  125. cursor: pointer;
  126. margin: 25px;
  127. box-shadow: 0 0 20px black;
  128. }
  129. .cards > *:hover{
  130. box-shadow: 0 0 25px #ff636b;
  131. }
  132. .cards > *:active{
  133. box-shadow: 0 0 10px #ff636b;
  134. }
  135. .cards p{
  136. margin-top: 25px;
  137. font-size: 25px;
  138. font-weight: bold;
  139. }
  140. .cards img{
  141. margin: auto 10px;
  142. }