landing.css 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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. /* ----The Checkbox and Inputs Start---- */
  82. /* The container */
  83. .container {
  84. display: block;
  85. position: relative;
  86. padding-left: 35px;
  87. margin-bottom: 12px;
  88. cursor: pointer;
  89. font-size: 16px;
  90. -webkit-user-select: none;
  91. -moz-user-select: none;
  92. -ms-user-select: none;
  93. user-select: none;
  94. }
  95. /* Hide the browser's default checkbox */
  96. .container input {
  97. position: absolute;
  98. opacity: 0;
  99. cursor: pointer;
  100. height: 0;
  101. width: 0;
  102. }
  103. /* Create a custom checkbox */
  104. .checkmark {
  105. position: absolute;
  106. top: 0;
  107. left: 0;
  108. height: 24px;
  109. width: 24px;
  110. border: 1px solid#ccc;
  111. border-radius: 4px;
  112. background-color: rgb(255, 255, 255);
  113. }
  114. /* On mouse-over, add a grey background color */
  115. .checkmark:hover {
  116. background-color: #ccc;
  117. }
  118. /* When the checkbox is checked, add a blue background */
  119. .container input:checked ~ .checkmark {
  120. background-color: #5A6F7D;
  121. border: 1px solid#5A6F7D;
  122. }
  123. /* Create the checkmark/indicator (hidden when not checked) */
  124. .checkmark:after {
  125. content: "";
  126. position: absolute;
  127. display: none;
  128. }
  129. /* Show the checkmark when checked */
  130. .container input:checked ~ .checkmark:after {
  131. display: block;
  132. }
  133. /* Style the checkmark/indicator */
  134. .container .checkmark:after {
  135. left: 9px;
  136. top: 5px;
  137. width: 5px;
  138. height: 10px;
  139. border: solid white;
  140. border-width: 0 3px 3px 0;
  141. -webkit-transform: rotate(45deg);
  142. -ms-transform: rotate(45deg);
  143. transform: rotate(45deg);
  144. }
  145. /* ----The Checkbox and Inputs End---- */
  146. @media screen and (max-width: 600px){
  147. .logo-text img{
  148. max-height: 20vh;
  149. }
  150. .logo-text p{
  151. font-size: 20px;
  152. }
  153. .more-info{
  154. padding: 25px;
  155. }
  156. .public-buttons{
  157. right: 25vw;
  158. }
  159. }