_tables.scss 390 B

12345678910111213141516171819202122232425262728
  1. .table {
  2. th,
  3. td {
  4. text-shadow: 0 1px 0 #fff;
  5. vertical-align: middle;
  6. }
  7. th {
  8. text-align: $left;
  9. }
  10. td {
  11. touch-action: manipulation;
  12. }
  13. thead th {
  14. border-#{$right}: 1px solid #fff;
  15. background-image: linear-gradient(#fff, #ccc);
  16. }
  17. }
  18. .table-hover {
  19. tbody tr {
  20. @include hover() {
  21. background: linear-gradient(#ced6df, #b6c6d7);
  22. }
  23. }
  24. }