receptty.org/sass/_tables.scss

30 lines
337 B
SCSS
Raw Normal View History

2019-10-30 11:58:46 +01:00
table {
border: 1px solid $border;
border-radius:3px;
background:linear-gradient(20deg, $primary 20%, $secondary 95%);
padding:0;
margin:0 2em 2em 0;
2019-12-14 17:32:48 +01:00
width:45%;
2019-10-30 11:58:46 +01:00
clear:both;
float:left;
thead {
th {
padding:1em;
border-bottom:1px dashed $border;
}
}
tbody {
tr {
td {
padding:.5em .8em;
}
}
}
}