App.scss 968 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. @import "~bootstrap/scss/bootstrap";
  2. .Navbar {
  3. background: #002f34;
  4. display: flex;
  5. .header {
  6. img {
  7. width: 20%;
  8. }
  9. #basic-navbar-nav {
  10. display: flex;
  11. justify-content: end;
  12. a {
  13. color: white;
  14. text-decoration: none;
  15. }
  16. a:hover {
  17. margin-top: 1px ;
  18. }
  19. }
  20. }
  21. }
  22. .divLogin {
  23. display: flex;
  24. flex-direction: column;
  25. justify-content: center;
  26. align-items: center;
  27. .pwd-container {
  28. display: flex;
  29. flex-direction: column;
  30. position: relative;
  31. img {
  32. position: absolute;
  33. cursor: pointer;
  34. width: 12%;
  35. top: 50%;
  36. left: 85%;
  37. }
  38. }
  39. }
  40. footer {
  41. background: #002f34;
  42. color: white;
  43. padding-top: 25px;
  44. a {
  45. color: white;
  46. text-decoration: none;
  47. }
  48. }