login.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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-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. ul {margin-bottom: 0;}
  26. ul li span {
  27. display: inline-block;
  28. margin: 0;
  29. padding: 0;
  30. width: 1px;
  31. height: 11px;
  32. background: #dadada;
  33. vertical-align: middle;
  34. }
  35. a {
  36. color: #0066c0;
  37. &:hover,
  38. &:focus {
  39. color: #c45500;
  40. text-decoration: underline;
  41. }
  42. }
  43. }
  44. hr {margin: 0.5rem 0;background-color: #dadada;}
  45. footer {text-align: center;font-size: 11px;padding-top: 12px;}
  46. }
  47. }