This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-website.git
The following commit(s) were added to refs/heads/master by this push: new 461b4a0 Made table style to be stripped and added padding new a8ef917 Merge pull request #178 from dzekem/feature_fix_table_style 461b4a0 is described below commit 461b4a0d85aed88e76cfa97e11b2c20f24e1cb83 Author: Dzekem Christa <cdze...@gmail.com> AuthorDate: Sun Mar 8 13:56:30 2020 +0100 Made table style to be stripped and added padding --- antora-ui-camel/src/css/blog.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/antora-ui-camel/src/css/blog.css b/antora-ui-camel/src/css/blog.css index 4cddf08..2252d57 100644 --- a/antora-ui-camel/src/css/blog.css +++ b/antora-ui-camel/src/css/blog.css @@ -133,4 +133,28 @@ article.blog p { .blog.list { flex-direction: row; } + + table { + width: 100%; + border-collapse: collapse; + } + + th, + td { + padding: 0.875rem; + } + + table, + th, + td { + border: 1px solid gray; + } + + th { + background: var(--color-camel-orange); + } + + tr:nth-child(even) { + background: var(--color-gray-10); + } }