login.scss 677 B

1234567891011121314151617181920212223242526272829303132333435
  1. @import 'style';
  2. .login{
  3. background: $color;
  4. width: 100%;
  5. height: 100vh;
  6. position: relative;
  7. .login-div{
  8. width: 350px;
  9. height: 420px;
  10. background: #fff;
  11. position: absolute;
  12. top: 0;
  13. bottom: 0;
  14. left: 0;
  15. right: 0;
  16. margin: auto;
  17. border-radius: 5px;
  18. box-shadow: rgba(0, 0, 0, 0.35) 20px 20px 20px;
  19. padding: 30px;
  20. img{
  21. display: block;
  22. margin: 0 auto 10px;
  23. }
  24. h1{
  25. color: $color;
  26. font-size: 24px;
  27. text-align: center;
  28. margin-bottom: 20px;
  29. }
  30. .login-btn{
  31. width: 100%;
  32. background: #FF694B;
  33. }
  34. }
  35. }