Increase contrast of table borders

This commit is contained in:
Michael Rose 2016-04-13 08:50:14 -04:00
parent 98fc300995
commit 98ada1b98e
2 changed files with 6 additions and 6 deletions

View file

@ -8,7 +8,7 @@ table {
font-family: $global-font-family;
font-size: $type-size-6;
border-collapse: collapse;
border: 2px solid $border-color;
border: 1px solid $light-gray;
& + table {
margin-top: 1em;
@ -17,20 +17,20 @@ table {
thead {
background-color: $lighter-gray;
border-bottom: 2px solid $border-color;
border-bottom: 1px solid $light-gray;
}
th {
padding: 0.5em;
font-weight: bold;
text-align: left;
border-right: 2px solid $border-color;
border-right: 1px solid $light-gray;
}
td {
padding: 0.5em;
border-bottom: 2px solid $border-color;
border-right: 2px solid $border-color;
border-bottom: 1px solid $light-gray;
border-right: 1px solid $light-gray;
}
tr, td, th {

File diff suppressed because one or more lines are too long