Add light borders for table cells

This commit is contained in:
Susam Pal
2020-12-29 17:28:29 +05:30
parent 1f5af7fa48
commit ff15568888
3 changed files with 63 additions and 3 deletions

11
sp.css
View File

@@ -64,6 +64,14 @@ blockquote :first-child {
blockquote :last-child {
margin-bottom: 0;
}
table {
border-collapse: collapse;
}
th, td {
border: thin solid #999;
padding: 0.3em 0.4em;
text-align: left;
}
@media (prefers-color-scheme: dark) {
body {
color: #bbb;
@@ -87,4 +95,7 @@ blockquote :last-child {
blockquote {
border-color: #444;
}
th, td {
border-color: #666;
}
}