| 1234567891011121314151617181920212223242526272829303132333435 |
- @import 'style';
- .login{
- background: $color;
- width: 100%;
- height: 100vh;
- position: relative;
- .login-div{
- width: 350px;
- height: 420px;
- background: #fff;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- margin: auto;
- border-radius: 5px;
- box-shadow: rgba(0, 0, 0, 0.35) 20px 20px 20px;
- padding: 30px;
- img{
- display: block;
- margin: 0 auto 10px;
- }
- h1{
- color: $color;
- font-size: 24px;
- text-align: center;
- margin-bottom: 20px;
- }
- .login-btn{
- width: 100%;
- background: #FF694B;
- }
- }
- }
|