summaryrefslogtreecommitdiffstats
path: root/docs/_vendor/github.com/gohugoio/gohugoioTheme/assets/css/_content-tables.css
diff options
context:
space:
mode:
Diffstat (limited to 'docs/_vendor/github.com/gohugoio/gohugoioTheme/assets/css/_content-tables.css')
-rw-r--r--docs/_vendor/github.com/gohugoio/gohugoioTheme/assets/css/_content-tables.css28
1 files changed, 28 insertions, 0 deletions
diff --git a/docs/_vendor/github.com/gohugoio/gohugoioTheme/assets/css/_content-tables.css b/docs/_vendor/github.com/gohugoio/gohugoioTheme/assets/css/_content-tables.css
new file mode 100644
index 000000000..4e092e8bf
--- /dev/null
+++ b/docs/_vendor/github.com/gohugoio/gohugoioTheme/assets/css/_content-tables.css
@@ -0,0 +1,28 @@
+.prose table {
+ width: 100%;
+ margin-bottom: 3em;
+ border-collapse: collapse;
+ border-spacing: 0;
+ font-size: 1em;
+ border: 1px solid var(--light-gray);
+ & th {
+ background-color: var(--primary-color);
+ border-bottom: 1px solid var(--primary-color);
+ color: white;
+ font-weight: 400;
+
+ text-align: left;
+ padding: .375em .5em;
+ }
+
+ & td, & tc {
+ padding: .75em .5em;
+ text-align: left;
+ border-right: 1px solid var(--light-gray);
+ }
+
+}
+
+.prose table tr:nth-child(even) {
+ background-color: var(--light-gray);
+}