style.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. #approvalForm {
  2. width: 100%;
  3. fieldset {
  4. position: relative;
  5. border: 1px solid var(--border-strong);
  6. border-radius: 3px;
  7. padding: 20px 26px;
  8. align-content: center;
  9. max-width: 430px;
  10. margin: 0 auto;
  11. > legend {
  12. position: absolute;
  13. top: -0.625rem;
  14. left: 1.25rem;
  15. padding: 0 5px;
  16. background: var(--bg-page);
  17. font-size: 1rem;
  18. font-weight: bold;
  19. }
  20. // 로그인 창
  21. > form {
  22. label {
  23. cursor: pointer;
  24. margin-bottom: 7px;
  25. }
  26. span em {
  27. font-style: normal;
  28. }
  29. // 수신된 이메일
  30. input[type="email"] {
  31. margin-bottom: 15px;
  32. }
  33. // 인증번호
  34. input[type="number"] {
  35. letter-spacing: 4px;
  36. -moz-appearance: textfield;
  37. &::-webkit-inner-spin-button,
  38. &::-webkit-outer-spin-button {
  39. -webkit-appearance: none;
  40. margin: 0;
  41. }
  42. margin-bottom: 10px;
  43. }
  44. hr {
  45. margin: 0.938rem 0;
  46. }
  47. // 우측 안내문구
  48. dl {
  49. dt {
  50. font-weight: bold;
  51. padding-bottom: 5px;
  52. }
  53. dd {
  54. font-size: 0.938rem;
  55. a {
  56. display: inline-block;
  57. padding: 0.438rem 0;
  58. color: var(--text-link);
  59. text-decoration: none;
  60. &:hover {
  61. text-decoration: underline;
  62. color: var(--text-link-hover);
  63. }
  64. }
  65. }
  66. }
  67. }
  68. }
  69. }
  70. @media (max-width: 420px) {
  71. #approvalForm {
  72. fieldset {
  73. padding: 1rem 0 0 0;
  74. border: none;
  75. > legend {
  76. position: initial;
  77. padding: initial;
  78. font-size: 1rem;
  79. font-weight: bold;
  80. }
  81. > form {
  82. padding: 0;
  83. }
  84. }
  85. }
  86. }
  87. @media (max-width: 640px) {
  88. #approvalForm {
  89. fieldset {
  90. width: 100%;
  91. > form {
  92. padding: 1rem 0;
  93. }
  94. }
  95. }
  96. }