styles.css 640 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .table.critter-table {
  2. color: #563928;
  3. background-color: #ded9bc;
  4. border-radius: 1rem;
  5. }
  6. .table.critter-table th {
  7. border: 0;
  8. }
  9. .table.critter-table thead {
  10. border-bottom: 2px dashed #785b31;
  11. text-transform: capitalize;
  12. }
  13. .table-hover.table.critter-table tbody tr:hover {
  14. color: #563928;
  15. background-color: rgba(0,0,0,.075);
  16. }
  17. .table.critter-table td.critter-img {
  18. padding: 0;
  19. text-align: center;
  20. }
  21. .table.critter-table tr td {
  22. border: 0;
  23. text-transform: capitalize;
  24. }
  25. .critter-table.table-striped tbody tr:nth-of-type(odd) {
  26. background-color: #d8d3b3;
  27. }
  28. td.critter-img img {
  29. width: 48px;
  30. height: auto;
  31. }