loginLog.scss 410 B

123456789101112131415161718192021222324252627
  1. // 로그인 기록
  2. #accountLoginLog {
  3. box-sizing: border-box;
  4. table {
  5. caption {
  6. caption-side: top;
  7. color: #bbbbbb;
  8. }
  9. tr {
  10. th, td {
  11. text-align: center;
  12. }
  13. }
  14. thead {
  15. tr {
  16. th {
  17. background: #133a46;
  18. }
  19. }
  20. }
  21. }
  22. }