login.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. // 로그인
  2. #loginForm {
  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.9rem;
  30. }
  31. form {
  32. div:last-child {
  33. ul {
  34. margin-bottom: 0;
  35. li {
  36. margin-right: 0;
  37. span {
  38. display: inline-block;
  39. margin: 0;
  40. padding: 0;
  41. width: 1px;
  42. height: 11px;
  43. background: #ced4da;
  44. vertical-align: middle;
  45. }
  46. a {
  47. color: #aaa;
  48. &:hover,
  49. &:focus {
  50. color: #cbd5e0;
  51. text-decoration: underline;
  52. }
  53. }
  54. }
  55. }
  56. }
  57. }
  58. hr {
  59. margin: 0.5rem 0 0.9rem 0;
  60. border-color: #888;
  61. }
  62. footer {
  63. text-align: center;
  64. font-size: 11px;
  65. color: #6c6c6c;
  66. }
  67. }
  68. }