loginLog.scss 714 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. th, td{
  13. text-align: center;
  14. }
  15. }
  16. thead {
  17. tr {
  18. th {
  19. background: #133a46;
  20. }
  21. }
  22. }
  23. tbody {
  24. tr {
  25. td {
  26. text-align: center;
  27. vertical-align: middle;
  28. border: none;
  29. font-size: 13px;
  30. }
  31. }
  32. }
  33. }
  34. }