landing.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. /* Register Strand */
  82. /* Hide the browser's default checkbox */
  83. .container input {
  84. position: absolute;
  85. opacity: 0;
  86. cursor: pointer;
  87. height: 0;
  88. width: 0;
  89. }
  90. #registerStrand{
  91. display: none;
  92. flex-direction: column;
  93. align-items: center;
  94. }
  95. #registerStrand > *{
  96. margin: 10px;
  97. }
  98. #agreement{
  99. display: flex;
  100. margin-top: 10px;
  101. }
  102. #checkAgree{
  103. width: 24px;
  104. height: 24px;
  105. margin-right: 17px;
  106. margin-bottom: 3px;
  107. padding-top: 0px
  108. }
  109. @media screen and (max-width: 600px){
  110. .logo-text img{
  111. max-height: 20vh;
  112. }
  113. .logo-text p{
  114. font-size: 20px;
  115. }
  116. .more-info{
  117. padding: 25px;
  118. }
  119. .public-buttons{
  120. right: 25vw;
  121. }
  122. }