register.scss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. // 회원가입
  2. #registerForm {
  3. background: #0f0f0f;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. justify-content: center;
  8. height: 100vh;
  9. a {
  10. text-decoration: none;
  11. }
  12. header {
  13. font-family: 'Open-Sans-Extrabold';
  14. font-size: 37px;
  15. font-weight: bolder;
  16. margin: 1.6rem 0;
  17. a {
  18. color: #d3d629;
  19. &:hover,
  20. &:focus {
  21. color: #a8aa2f;
  22. }
  23. }
  24. }
  25. main {
  26. max-width: 800px;
  27. padding: 10px;
  28. h5 {
  29. font-weight: bold;
  30. margin-bottom: 0.8rem;
  31. }
  32. hr {
  33. margin: 0.9rem 0;
  34. border-color: #888;
  35. }
  36. form {
  37. section {
  38. margin: 10px 0;
  39. blockquote {
  40. height: 90px;
  41. border: 1px solid #ddd;
  42. border-radius: 5px;
  43. overflow-y: scroll;
  44. padding: 10px;
  45. }
  46. div:last-child {
  47. a {
  48. color: #0066c0;
  49. &:hover,
  50. &:focus {
  51. color: #00558c;
  52. text-decoration: underline;
  53. }
  54. }
  55. }
  56. }
  57. }
  58. footer {
  59. text-align: center;
  60. font-size: 11px;
  61. color: #6c6c6c;
  62. background: transparent;
  63. border: 0;
  64. padding: 0;
  65. }
  66. }
  67. }