12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- 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;
- .ant-input {width:268px;}
- }
- .pw-box {
- margin-bottom: 20px;
- .ant-input {width:268px;}
- }
- }
- .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;
- }
|