mirror of
https://github.com/dzeiocom/components.git
synced 2025-04-23 03:12:14 +00:00
39 lines
706 B
Stylus
39 lines
706 B
Stylus
@import '../config'
|
|
|
|
.table
|
|
border-spacing 0
|
|
width 100%
|
|
|
|
tr
|
|
$radius = 16px
|
|
th:first-child
|
|
border-top-left-radius $radius
|
|
border-bottom-left-radius $radius
|
|
|
|
th:last-child
|
|
border-top-right-radius $radius
|
|
border-bottom-right-radius $radius
|
|
|
|
&.horizontalBorders tr:not(:last-child) td
|
|
border-bottom 1px solid $darkGrayLight
|
|
|
|
&.verticalBorders tr td:not(:first-child)
|
|
border-left 1px solid $darkGrayLight
|
|
|
|
th
|
|
td
|
|
padding 16px
|
|
text-align left
|
|
color black
|
|
@media (prefers-color-scheme dark)
|
|
color white
|
|
th
|
|
background $lightGrayLight
|
|
color $darkGrayLight
|
|
@media (prefers-color-scheme dark)
|
|
background $lightGrayDark
|
|
color $darkGrayDark
|
|
|
|
.parent
|
|
overflow-x auto
|