style2.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. *{margin:0;padding:0;font-family:'Saira',sans-serif;}
  2. html, body{
  3. width: 100vw;
  4. max-width: 100%;
  5. }
  6. .header{
  7. display: flex;
  8. justify-content: space-between;
  9. width: 100%;
  10. background: rgb(0, 27, 45);
  11. height: 75px;
  12. padding: 0 25px;
  13. box-sizing: border-box;
  14. }
  15. .headerStart{
  16. display: flex;
  17. align-items: center;
  18. text-decoration: none;
  19. }
  20. .headerLogo{
  21. color: white;
  22. font-size: 25px;
  23. margin-left: 10px;
  24. }
  25. .headerStart img{
  26. max-height: 90%;
  27. }
  28. .headerEnd{
  29. display: flex;
  30. align-items: center;
  31. height: 100%;
  32. color: white;
  33. }
  34. .link{
  35. margin: 10px;
  36. color: white;
  37. }
  38. .enterButton{
  39. background: rgb(179, 191, 209);
  40. border: none;
  41. text-decoration: none;
  42. padding: 10px 25px;
  43. color: black;
  44. cursor: pointer;
  45. text-align: center;
  46. font-size: 15px;
  47. min-width: 100px;
  48. margin: 5px;
  49. max-height: 52px;
  50. }
  51. .enterButton:hover{
  52. background: rgb(240, 252, 255);
  53. color:black;
  54. }
  55. .enterButton:active{
  56. background: rgb(0, 27, 45);
  57. }
  58. .main-background{
  59. display: flex;
  60. align-items: center;
  61. justify-content: center;
  62. background-image: url("/shared/images/backgroundImg01.jpg");
  63. background-repeat: no-repeat;
  64. background-size: cover;
  65. height: 88vh;
  66. width: 100%;
  67. color: rgb(0, 27, 45);
  68. }
  69. .logo-text{
  70. display: flex;
  71. flex-direction: column;
  72. align-items: center;
  73. max-width: 50vw;
  74. }
  75. .logo-text img{
  76. max-height: 25vh;
  77. margin-bottom: 35px;
  78. }
  79. .logo-text p{
  80. font-weight: bold;
  81. font-size: 25px;
  82. color: rgb(255, 99, 107);
  83. text-align: center;
  84. }
  85. .more-info{
  86. width: 100%;
  87. padding: 75px;
  88. background:rgb(0, 27, 45);
  89. color: white;
  90. box-sizing: border-box;
  91. text-align: justify;
  92. font-size: 25px;
  93. }
  94. .more-info > *{
  95. margin: 15px;
  96. }
  97. .line-break{
  98. width: 100%;
  99. border: 1px solid rgb(255, 99, 107);
  100. margin: 30px 0;
  101. }
  102. .more-info h1{
  103. color: rgb(255, 99, 107);
  104. text-align: center;
  105. font-size: 45px;
  106. margin: 25px 0;
  107. }
  108. ul > *{
  109. margin: 15px 0;
  110. }
  111. ul span{
  112. color: rgb(255, 99, 107);
  113. }
  114. li{
  115. font-size: 20px;
  116. }
  117. #login{
  118. display: flex;
  119. flex-direction: column;
  120. justify-content: space-between;
  121. align-items: center;
  122. height: 100vh;
  123. }
  124. form{
  125. display: flex;
  126. flex-direction: column;
  127. padding: 25px;
  128. background: rgb(240, 252, 255);
  129. border: 1px solid black;
  130. min-width: 500px;
  131. }
  132. form > *{
  133. margin: 15px;
  134. }
  135. form h1{
  136. text-align: center;
  137. }
  138. label{
  139. display: flex;
  140. flex-direction: column;
  141. }
  142. input[type=submit]{
  143. background: rgb(0, 27, 45);
  144. border: none;
  145. text-decoration: none;
  146. padding: 10px 25px;
  147. color: white;
  148. cursor: pointer;
  149. text-align: center;
  150. font-size: 15px;
  151. min-width: 100px;
  152. margin: 5px;
  153. max-height: 52px;
  154. }
  155. input[type=submit]:hover{
  156. background: rgb(179, 191, 209);
  157. color:black;
  158. }
  159. input[type=submit]:active{
  160. background: rgb(240, 252, 255);
  161. }
  162. form a{
  163. text-align: center;
  164. color: gray;
  165. margin: 5px;
  166. font-size: 20px;
  167. }
  168. .footer{
  169. display: flex;
  170. flex-direction: column;
  171. align-items: center;
  172. padding: 10px;
  173. background: rgb(240, 252, 255);
  174. width: 100%;
  175. box-sizing: border-box;
  176. }
  177. .footer div > *{
  178. margin: 0 10px;
  179. }