Merge pull request #194 from writeas/table-borders

lightly style tables in posts
pull/281/head
Matt Baer 5 years ago committed by GitHub
commit da0455198d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 17
      less/core.less

@ -639,6 +639,23 @@ table.classy {
}
}
article table {
border-spacing: 0;
border-collapse: collapse;
width: 100%;
th {
border-width: 1px 1px 2px 1px;
border-style: solid;
border-color: #ccc;
}
td {
border-width: 0 1px 1px 1px;
border-style: solid;
border-color: #ccc;
padding: .25rem .5rem;
}
}
body#collection article, body#subpage article {
padding-top: 0;
padding-bottom: 0;

Loading…
Cancel
Save