My public website https://www.chameth.com/
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

_tables.sass 529B

123456789101112131415161718192021222324252627282930313233
  1. // Basic tables
  2. .table-wrapper
  3. -webkit-overflow-scrolling: touch
  4. overflow-x: auto
  5. table
  6. margin: 0 0 2em 0
  7. width: 100%
  8. tbody tr
  9. border: solid 1px $light-gray
  10. border-left: 0
  11. border-right: 0
  12. &:nth-child(2n + 1)
  13. background-color: $lightest-gray
  14. td
  15. padding: 0.75em 0.75em
  16. th
  17. color: $gray
  18. font-size: 0.9em
  19. font-weight: 400
  20. padding: 0 0.75em 0.75em 0.75em
  21. text-align: left
  22. thead
  23. border-bottom: solid 2px $light-gray
  24. tfoot
  25. border-top: solid 2px $light-gray