Increase contrast of table borders
This commit is contained in:
parent
98fc300995
commit
98ada1b98e
2 changed files with 6 additions and 6 deletions
|
@ -8,7 +8,7 @@ table {
|
||||||
font-family: $global-font-family;
|
font-family: $global-font-family;
|
||||||
font-size: $type-size-6;
|
font-size: $type-size-6;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
border: 2px solid $border-color;
|
border: 1px solid $light-gray;
|
||||||
|
|
||||||
& + table {
|
& + table {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
|
@ -17,20 +17,20 @@ table {
|
||||||
|
|
||||||
thead {
|
thead {
|
||||||
background-color: $lighter-gray;
|
background-color: $lighter-gray;
|
||||||
border-bottom: 2px solid $border-color;
|
border-bottom: 1px solid $light-gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
border-right: 2px solid $border-color;
|
border-right: 1px solid $light-gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
td {
|
td {
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
border-bottom: 2px solid $border-color;
|
border-bottom: 1px solid $light-gray;
|
||||||
border-right: 2px solid $border-color;
|
border-right: 1px solid $light-gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr, td, th {
|
tr, td, th {
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue