123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- .login-box {
- width: 400px;
- height: 320px;
- padding: 50px 50px 0 50px;
- background: #fff;
- margin: 0 auto;
- 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;
- }
|