1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- body {
- background: #fff url(../../../image/bg.jpg) no-repeat;
- background-size: cover;
- }
- .login-box {
- width: 400px;
- height: 320px;
- padding: 50px 50px 0 50px;
- background: #fff;
- margin: 40px auto;
- position: relative;
- left: 200px;
- top: 90px;
- input {
- height: 36px;
- border-radius: 0px;
- }
- button {
- width: 300px;
- height: 36px;
- }
- .ant-input-group-addon {
- font-size: 17px;
- }
- .user-box {
- margin-bottom: 20px;
- }
- .pw-box {
- margin-bottom: 20px;
- }
- }
- .ant-checkbox-wrapper {
- margin-bottom: 20px;
- font-size: 14px;
- color: #878787;
- }
- .ant-btn {
- font-size: 18px;
- }
- input::-webkit-input-placeholder,
- textarea::-webkit-input-placeholder {
- color: #333;
- }
- input:-moz-placeholder,
- textarea:-moz-placeholder {
- color: #333;
- }
- input::-moz-placeholder,
- textarea::-moz-placeholder {
- color: #333;
- }
- input:-ms-input-placeholder,
- textarea:-ms-input-placeholder {
- color: #333;
- }
|