register.scss 940 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 {color: #333;}
  17. }
  18. main {
  19. border: 1px solid #dadada;
  20. border-radius: 4px;
  21. padding: 20px;
  22. background: #fff;
  23. h5 {font-weight: bold;margin-bottom: 0.9rem;}
  24. div:last-child {
  25. a {
  26. color: #0066c0;
  27. &:hover,
  28. &:focus {
  29. color: #c45500;
  30. text-decoration: underline;
  31. }
  32. }
  33. }
  34. hr {margin: 0.5rem 0;background-color: #dadada;}
  35. footer {text-align: center;font-size: 11px;padding-top: 12px;}
  36. }
  37. }