| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- #resetPasswordForm {
- width: 100%;
- fieldset {
- position: relative;
- border: 1px solid #cecece;
- border-radius: 3px;
- padding: 20px 26px;
- align-content: center;
- max-width: 400px;
- margin: 0 auto;
- > legend {
- position: absolute;
- top: -0.625rem;
- left: 1.25rem;
- padding: 0 5px;
- background: white;
- font-size: 1rem;
- font-weight: bold;
- }
- // 회원가입 창
- form {
- label {
- cursor: pointer;
- margin-bottom: 7px;
- }
- input[type="email"],
- input[type="password"] {
- margin-bottom: 15px;
- }
- input[type="password"] {
- letter-spacing: 1px;
- &:last-child {
- margin-bottom: 0;
- }
- }
- label {
- small {
- padding-right: 5px;
- }
- button {
- color: #0060a9;
- &:hover {
- text-decoration: underline;
- color: #c7511f;
- }
- }
- }
- }
- hr {
- margin: 20px 0;
- }
- }
- }
- @media (max-width: 420px) {
- #resetPasswordForm {
- fieldset {
- padding: 1rem 0 0 0;
- border: none;
- > legend {
- position: initial;
- padding: initial;
- font-size: 1rem;
- font-weight: bold;
- }
- > form {
- padding: 0;
- }
- }
- }
- }
|