mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-06 14:54:57 +00:00
add sass/scratch.scss and associated sass files
This commit is contained in:
33
Resources/public/sass/modules/_table.scss
Normal file
33
Resources/public/sass/modules/_table.scss
Normal file
@@ -0,0 +1,33 @@
|
||||
table {
|
||||
width: $table-width;
|
||||
|
||||
thead {
|
||||
background-color: $table-head-bg-color;
|
||||
|
||||
tr th {
|
||||
border: $table-head-td-border;
|
||||
text-align: $table-head-td-text-align;
|
||||
padding: $table-head-td-padding;
|
||||
color: $table-head-text-color;
|
||||
}
|
||||
}
|
||||
|
||||
tbody {
|
||||
tr {
|
||||
td {
|
||||
border: $table-body-td-border;
|
||||
text-align: $table-body-td-text-align;
|
||||
padding: $table-body-td-padding;
|
||||
color: $table-body-text-color;
|
||||
}
|
||||
|
||||
&:nth-of-type(even) {
|
||||
background-color: $table-body-tr-bg-color-even;
|
||||
}
|
||||
|
||||
&:nth-of-type(odd) {
|
||||
background-color: $table-body-tr-bg-color-odd;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user