style.css 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  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. /*
  71. Login Page
  72. */
  73. #login{
  74. display: flex;
  75. flex-direction: column;
  76. align-items: center;
  77. background-image: url("/shared/images/backgroundImg01.jpg");
  78. background-repeat: no-repeat;
  79. background-size: cover;
  80. height: 91.5vh;
  81. }
  82. /*
  83. Footer Partial
  84. */
  85. .spacer{
  86. flex: 1;
  87. }
  88. .footer{
  89. display: flex;
  90. flex-direction: column;
  91. align-items: center;
  92. padding: 10px;
  93. background: rgb(240, 252, 255);
  94. width: 100%;
  95. box-sizing: border-box;
  96. }
  97. .footer > *{
  98. margin: 5px;
  99. }
  100. .footer div > *{
  101. margin: 0 25px;
  102. }
  103. #registerStrand form{
  104. margin: 0;
  105. }
  106. #registerStrand form > *{
  107. margin: 2px;
  108. }
  109. /* ----The Checkbox and Inputs Start---- */
  110. /* The container */
  111. .container {
  112. display: block;
  113. position: relative;
  114. padding-left: 35px;
  115. margin-bottom: 12px;
  116. cursor: pointer;
  117. font-size: 16px;
  118. -webkit-user-select: none;
  119. -moz-user-select: none;
  120. -ms-user-select: none;
  121. user-select: none;
  122. }
  123. /* Hide the browser's default checkbox */
  124. .container input {
  125. position: absolute;
  126. opacity: 0;
  127. cursor: pointer;
  128. height: 0;
  129. width: 0;
  130. }
  131. /* Create a custom checkbox */
  132. .checkmark {
  133. position: absolute;
  134. top: 0;
  135. left: 0;
  136. height: 24px;
  137. width: 24px;
  138. border: 1px solid#ccc;
  139. border-radius: 4px;
  140. background-color: rgb(255, 255, 255);
  141. }
  142. /* On mouse-over, add a grey background color */
  143. .checkmark:hover {
  144. background-color: #ccc;
  145. }
  146. /* When the checkbox is checked, add a blue background */
  147. .container input:checked ~ .checkmark {
  148. background-color: #5A6F7D;
  149. border: 1px solid#5A6F7D;
  150. }
  151. /* Create the checkmark/indicator (hidden when not checked) */
  152. .checkmark:after {
  153. content: "";
  154. position: absolute;
  155. display: none;
  156. }
  157. /* Show the checkmark when checked */
  158. .container input:checked ~ .checkmark:after {
  159. display: block;
  160. }
  161. /* Style the checkmark/indicator */
  162. .container .checkmark:after {
  163. left: 9px;
  164. top: 5px;
  165. width: 5px;
  166. height: 10px;
  167. border: solid white;
  168. border-width: 0 3px 3px 0;
  169. -webkit-transform: rotate(45deg);
  170. -ms-transform: rotate(45deg);
  171. transform: rotate(45deg);
  172. }
  173. /* ----The Checkbox and Inputs End---- */
  174. /* Inputs Start */
  175. input[type=text], select {
  176. width: 100%;
  177. padding: 12px 20px;
  178. margin: 8px 0;
  179. display: inline-block;
  180. border: 1px solid #ccc;
  181. border-radius: 4px;
  182. box-sizing: border-box;
  183. padding-bottom: 16px;
  184. font-size: 16px;
  185. }
  186. input[type=text], input[type=password], select {
  187. width: 100%;
  188. padding: 12px 20px;
  189. margin: 8px 0;
  190. display: inline-block;
  191. border: 1px solid #ccc;
  192. border-radius: 4px;
  193. box-sizing: border-box;
  194. font-size: 16px;
  195. }
  196. input[type=submit] {
  197. width: 100%;
  198. background-color:rgb(255, 99, 107);
  199. color: white;
  200. padding: 14px 20px;
  201. margin: 8px 0;
  202. border: none;
  203. border-radius: 4px;
  204. cursor: pointer;
  205. font-size: 22px;
  206. margin-top: 30px;
  207. }
  208. input[type=submit]:hover {
  209. background: rgb(243, 77, 86);
  210. color: white;
  211. }
  212. input[type=text]:focus, input[type=password]:focus {
  213. border: 2px solid #555;
  214. outline: none;
  215. }
  216. input[type=button] {
  217. background-color: rgb(255, 99, 107);
  218. }
  219. input[type=button]:hover {
  220. background-color:rgb(0, 27, 45);
  221. }
  222. .input-error{
  223. border-color: red;
  224. }
  225. /* Inputs End */
  226. @media screen and (max-width: 600px){
  227. .logo-text img{
  228. max-height: 20vh;
  229. }
  230. .logo-text p{
  231. font-size: 20px;
  232. }
  233. .more-info{
  234. padding: 25px;
  235. }
  236. .public-buttons{
  237. right: 25vw;
  238. }
  239. }