diff options
author | Yihui Xie | 2017-08-09 11:40:47 -0500 |
---|---|---|
committer | Yihui Xie | 2017-08-09 11:40:47 -0500 |
commit | 6272e671f93490cc920b481e914ef42e95cfb3f7 (patch) | |
tree | 8484e28ad04c3d4fca7d428708ce43404930fd60 | |
parent | 0a869e2e767c166da321dbcbb8e64c42b95e07a4 (diff) | |
download | hugo-xmin-6272e671f93490cc920b481e914ef42e95cfb3f7.tar.lz hugo-xmin-6272e671f93490cc920b481e914ef42e95cfb3f7.tar.zst hugo-xmin-6272e671f93490cc920b481e914ef42e95cfb3f7.zip |
gray background for table header/footer
-rw-r--r-- | static/css/style.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/css/style.css b/static/css/style.css index b999265..d23b9a5 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -47,4 +47,4 @@ table { } table thead th { border-bottom: 1px solid #ddd; } th, td { padding: 5px; } -tr:nth-child(even) { background: #eee } +thead, tfoot, tr:nth-child(even) { background: #eee } |