login.scss 641 B

12345678910111213141516171819202122232425262728293031323334353637
  1. $bg:#fff;
  2. $dark_gray:#889aa4;
  3. $light_gray:#eee;
  4. .bg{
  5. background:url("/static/img/login.jpg") center center no-repeat;
  6. background-size:100% 100%;
  7. height: 100%;
  8. display:flex;
  9. align-items:center;
  10. justify-content:center;
  11. }
  12. .login-container{
  13. background: $bg;
  14. box-shadow: 0 15px 30px 0 rgba(0,0,0,0.3);
  15. border-radius: 9px;
  16. width: 50%;
  17. height: 330px;
  18. display: flex;
  19. justify-content: center;
  20. flex-direction: row ;
  21. align-items: center;
  22. .pic{
  23. display: flex;
  24. flex-direction: row;
  25. justify-content: flex-start;
  26. }
  27. .tab{
  28. width: 390px;
  29. }
  30. .btn{
  31. display: flex;
  32. justify-content: center;
  33. }
  34. }