atendance_style.css 405 B

123456789101112131415161718192021222324252627282930
  1. .table-title {
  2. line-height: 50px;
  3. text-align: center;
  4. }
  5. .table-title span {
  6. font-size: 22px;
  7. color: #333;
  8. }
  9. .table-head th{
  10. border: 1px solid #d9d9d9;
  11. text-align: center;
  12. height: 30px;
  13. background:#ebf3fd;
  14. }
  15. .table-tbody td{
  16. border: 1px solid #d9d9d9;
  17. height: 38px;
  18. }
  19. td.b-grey{
  20. background:grey;
  21. }
  22. .table-tbody tr:nth-child(2n){
  23. background: #efefef;
  24. }