register.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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: 1.6rem 0;
  16. a {
  17. color: #d3d629;
  18. &:hover,
  19. &:focus {
  20. color: #a8aa2f;
  21. }
  22. }
  23. }
  24. main {
  25. max-width: 800px;
  26. padding: 10px;
  27. h5 {
  28. font-weight: bold;
  29. margin-bottom: 0.8rem;
  30. }
  31. hr {
  32. margin: 0.9rem 0;
  33. border-color: #888;
  34. }
  35. form {
  36. section {
  37. margin: 10px 0;
  38. blockquote {
  39. height: 90px;
  40. border: 1px solid #ddd;
  41. border-radius: 5px;
  42. overflow-y: scroll;
  43. padding: 10px;
  44. }
  45. div:last-child {
  46. a {
  47. color: #0066c0;
  48. &:hover,
  49. &:focus {
  50. color: #00558c;
  51. text-decoration: underline;
  52. }
  53. }
  54. }
  55. }
  56. }
  57. footer {
  58. text-align: center;
  59. font-size: 11px;
  60. color: #6c6c6c;
  61. }
  62. }
  63. }