login.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. // 로그인
  2. #loginForm {
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. justify-content: center;
  7. height: 100vh;
  8. background: #000;
  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-bottom: 0.7rem;
  17. a {
  18. color: #d3d629;
  19. &:hover,
  20. &:focus {
  21. color: #a8aa2f;
  22. }
  23. }
  24. }
  25. main {
  26. border-radius: 0;
  27. padding: 20px;
  28. border: 1px solid #2f2f2f;
  29. background: #191919;
  30. h5 {
  31. font-weight: bold;
  32. margin-bottom: 0.9rem;
  33. }
  34. div:last-child {
  35. ul {
  36. margin-bottom: 0;
  37. li {
  38. span {
  39. display: inline-block;
  40. margin: 0;
  41. padding: 0;
  42. width: 1px;
  43. height: 11px;
  44. background: #b7b8ba;
  45. vertical-align: middle;
  46. }
  47. }
  48. }
  49. a {
  50. color: #b7b8ba;
  51. &:hover,
  52. &:focus {
  53. color: #b9b9b9;
  54. text-decoration: underline;
  55. }
  56. }
  57. }
  58. hr {
  59. margin: 0.5rem 0;
  60. border-color: #888;
  61. }
  62. footer {
  63. text-align: center;
  64. font-size: 11px;
  65. padding-top: 12px;
  66. color: #6c6c6c;
  67. }
  68. }
  69. }