New examples and new default variable structure

This commit is contained in:
Stephan Hagedorn 2017-08-29 10:50:34 +02:00
parent a8fabf373e
commit 0c4e801690
13 changed files with 455 additions and 259 deletions

View file

@ -40,7 +40,7 @@ tfoot {
}
}
.table_blank {
.table__blank {
border: $basic_border_width solid transparent;
th, td {
@ -48,11 +48,11 @@ tfoot {
}
}
.table_free {
.table__free {
border: $basic_border_width solid transparent;
}
.table_stripe {
.table__stripe {
td {
border-top: 0;
border-bottom: 0;
@ -63,7 +63,7 @@ tfoot {
}
}
.table_fix {
.table__fix {
table-layout: fixed;
}
@ -73,3 +73,8 @@ caption {
border: $basic_border_width dotted $basic_border_color;
text-align: center;
}
// Data
.table__file_simple {
@extend .width_full;
}