| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- #approvalForm {
- width: 100%;
- fieldset {
- position: relative;
- border: 1px solid var(--border-strong);
- border-radius: 3px;
- padding: 20px 26px;
- align-content: center;
- max-width: 430px;
- margin: 0 auto;
- > legend {
- position: absolute;
- top: -0.625rem;
- left: 1.25rem;
- padding: 0 5px;
- background: var(--bg-page);
- font-size: 1rem;
- font-weight: bold;
- }
- // 로그인 창
- > form {
- label {
- cursor: pointer;
- margin-bottom: 7px;
- }
- span em {
- font-style: normal;
- }
- // 수신된 이메일
- input[type="email"] {
- margin-bottom: 15px;
- }
- // 인증번호
- input[type="number"] {
- letter-spacing: 4px;
- -moz-appearance: textfield;
- &::-webkit-inner-spin-button,
- &::-webkit-outer-spin-button {
- -webkit-appearance: none;
- margin: 0;
- }
- margin-bottom: 10px;
- }
- hr {
- margin: 0.938rem 0;
- }
- // 우측 안내문구
- dl {
- dt {
- font-weight: bold;
- padding-bottom: 5px;
- }
- dd {
- font-size: 0.938rem;
- a {
- display: inline-block;
- padding: 0.438rem 0;
- color: var(--text-link);
- text-decoration: none;
- &:hover {
- text-decoration: underline;
- color: var(--text-link-hover);
- }
- }
- }
- }
- }
- }
- }
- @media (max-width: 420px) {
- #approvalForm {
- fieldset {
- padding: 1rem 0 0 0;
- border: none;
- > legend {
- position: initial;
- padding: initial;
- font-size: 1rem;
- font-weight: bold;
- }
- > form {
- padding: 0;
- }
- }
- }
- }
- @media (max-width: 640px) {
- #approvalForm {
- fieldset {
- width: 100%;
- > form {
- padding: 1rem 0;
- }
- }
- }
- }
|