loginLog.scss 774 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // 로그인 기록
  2. #accountLoginLog {
  3. box-sizing: border-box;
  4. table {
  5. margin-bottom: 0;
  6. min-width: 580px;
  7. caption {
  8. caption-side: top;
  9. color: #bbbbbb;
  10. }
  11. tr {
  12. border-bottom: 1px solid #212121;
  13. th, td {
  14. text-align: center;
  15. }
  16. }
  17. thead {
  18. tr {
  19. th {
  20. background: #133a46;
  21. }
  22. }
  23. }
  24. tbody {
  25. tr {
  26. td {
  27. text-align: center;
  28. vertical-align: middle;
  29. border: none;
  30. font-size: 13px;
  31. }
  32. }
  33. }
  34. }
  35. }