login.scss 641 B

123456789101112131415161718192021222324252627282930313233
  1. page-login {
  2. .header {
  3. background: url("../assets/imgs/background-login-sm.png") repeat #5ec0f9;
  4. width: 100%;
  5. height: 40vh;
  6. position: relative;
  7. margin-bottom: 50px;
  8. .logo {
  9. border-radius: 50%;
  10. border: 5px solid #fff;
  11. background-color: #ccc;
  12. width: 140px;
  13. height: 140px;
  14. position: absolute;
  15. bottom: -60px;
  16. left: calc(50% - 70px);
  17. }
  18. .svg-triangle {
  19. position: absolute;
  20. bottom: 0;
  21. }
  22. }
  23. .content {
  24. display: flex;
  25. flex-direction: column;
  26. align-items: center;
  27. padding: 16px;
  28. button {
  29. margin: 16px 0 32px 0;
  30. }
  31. }
  32. }