register.scss 992 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // 회원가입
  2. #registerForm {
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. justify-content: center;
  7. height: 100vh;
  8. a {
  9. text-decoration: none;
  10. }
  11. header {
  12. font-family: 'Open-Sans-Extrabold';
  13. font-size: 37px;
  14. font-weight: bolder;
  15. margin-bottom: 0.7rem;
  16. a {
  17. color: #333;
  18. &:hover,
  19. &:focus {
  20. color: #18306c;
  21. }
  22. }
  23. }
  24. main {
  25. border-radius: 4px;
  26. padding: 20px;
  27. border: 1px solid #b5b5b5;
  28. background: #fff;
  29. h5 {font-weight: bold;margin-bottom: 0.9rem;}
  30. div:last-child {
  31. a {
  32. &:hover,
  33. &:focus {
  34. text-decoration: underline;
  35. }
  36. }
  37. }
  38. hr {margin: 0.5rem 0;border-color: #888;}
  39. footer {text-align: center;font-size: 11px;padding-top: 12px;color: #6c6c6c;}
  40. }
  41. }