My public website https://www.chameth.com/
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_tables.sass 549B

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