old-website/static/sass/styles/table.sass

51 lines
984 B
Sass
Raw Normal View History

2023-06-18 18:06:01 +00:00
.table
width: 100%
border-radius: $radius
overflow: hidden
border: 1px solid $dark
table
border: none
border-collapse: collapse
width: 100%
tr
border: none
border-bottom: 1px solid $dark
&:last-child
border: none
th, td
padding: 0.5rem
text-align: left
vertical-align: top
border-right: 1px solid $dark
&:last-child
border: none
th
background: $dark
color: $light
@media (max-width: 768px)
.table table
th, td
padding: 0.25rem
2023-07-21 12:25:33 +00:00
@media (prefers-color-scheme: dark)
.table
border: 1px solid $light
table
tr
border-bottom: 1px solid $light
th, td
border-right: 1px solid $light
th
background: $light
color: $dark