login.scss 634 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. width: 140px;
  10. height: 140px;
  11. position: absolute;
  12. bottom: -60px;
  13. left: calc(50% - 70px);
  14. img {
  15. border-radius: 50%;
  16. border: 5px solid #fff;
  17. }
  18. }
  19. .svg-triangle {
  20. position: absolute;
  21. bottom: 0;
  22. }
  23. }
  24. .content {
  25. display: flex;
  26. flex-direction: column;
  27. align-items: center;
  28. padding: 16px;
  29. button {
  30. margin: 16px 0 32px 0;
  31. }
  32. }
  33. }