style.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. appearance: textfield;
  38. &::-webkit-inner-spin-button,
  39. &::-webkit-outer-spin-button {
  40. -webkit-appearance: none;
  41. margin: 0;
  42. }
  43. margin-bottom: 10px;
  44. }
  45. hr {
  46. margin: 0.938rem 0;
  47. }
  48. // 우측 안내문구
  49. dl {
  50. dt {
  51. font-weight: bold;
  52. padding-bottom: 5px;
  53. }
  54. dd {
  55. font-size: 0.938rem;
  56. a {
  57. display: inline-block;
  58. padding: 0.438rem 0;
  59. color: var(--text-link);
  60. text-decoration: none;
  61. &:hover {
  62. text-decoration: underline;
  63. color: var(--text-link-hover);
  64. }
  65. }
  66. }
  67. }
  68. }
  69. }
  70. }
  71. @media (max-width: 420px) {
  72. #approvalForm {
  73. fieldset {
  74. padding: 1rem 0 0 0;
  75. border: none;
  76. > legend {
  77. position: initial;
  78. padding: initial;
  79. font-size: 1rem;
  80. font-weight: bold;
  81. }
  82. > form {
  83. padding: 0;
  84. }
  85. }
  86. }
  87. }
  88. @media (max-width: 640px) {
  89. #approvalForm {
  90. fieldset {
  91. width: 100%;
  92. > form {
  93. padding: 1rem 0;
  94. }
  95. }
  96. }
  97. }