style.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. #approvalForm {
  2. width: 100%;
  3. fieldset {
  4. position: relative;
  5. border: 1px solid #cecece;
  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: white;
  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. }
  52. dd {
  53. font-size: 0.938rem;
  54. a {
  55. display: inline-block;
  56. padding: 0.438rem 0;
  57. color: #0060a9;
  58. text-decoration: none;
  59. &:hover {
  60. text-decoration: underline;
  61. color: #c7511f;
  62. }
  63. }
  64. }
  65. }
  66. }
  67. }
  68. }
  69. @media (max-width: 640px) {
  70. #approvalForm {
  71. fieldset {
  72. width: 100%;
  73. > form {
  74. padding: 1rem 0;
  75. }
  76. }
  77. }
  78. }