feat: default style for table

This commit is contained in:
Vivek R
2020-01-05 11:55:42 +05:30
parent 7aba720e77
commit 28b525ab09
3 changed files with 33 additions and 0 deletions

View File

@@ -58,3 +58,12 @@ a:hover {
.highlight {
background-color: #333;
}
table th {
background-color: #333;
}
table th, table td {
padding: 10px 20px;
border: 1px solid #666;
}

View File

@@ -375,6 +375,15 @@ ul {
text-align: right;
}
table th {
background-color: #f4f4f4;
}
table th, table td {
padding: 10px 20px;
border: 1px solid #dddddd;
}
@media (max-width: 767px) {
body {
padding: 20px;