diff --git a/examples/tables-styles.adoc b/examples/tables-styles.adoc
new file mode 100644
index 00000000..6e120653
--- /dev/null
+++ b/examples/tables-styles.adoc
@@ -0,0 +1,141 @@
+= Table styles
+
+== Default table with header
+
+[cols=2*,options=header]
+|===
+| Header 1
+| Header 2
+
+| Row 1, Col1
+| Row 1, Col2
+
+| Row 2, Col1
+| Row 2, Col2
+
+|===
+
+== Frames
+
+=== Frame none
+
+[cols=2*,frame=none,options=header]
+|===
+| Header 1
+| Header 2
+
+| Row 1, Col1
+| Row 1, Col2
+
+| Row 2, Col1
+| Row 2, Col2
+
+|===
+
+=== Frame sides
+
+[cols=2*,frame=sides,options=header]
+|===
+| Header 1
+| Header 2
+
+| Row 1, Col1
+| Row 1, Col2
+
+| Row 2, Col1
+| Row 2, Col2
+
+|===
+
+=== Frame topbot
+
+[cols=2*,frame=topbot,options=header]
+|===
+| Header 1
+| Header 2
+
+| Row 1, Col1
+| Row 1, Col2
+
+| Row 2, Col1
+| Row 2, Col2
+
+|===
+
+== Grid
+
+=== Grid none
+
+[cols=2*,grid=none,options=header]
+|===
+| Header 1
+| Header 2
+
+| Row 1, Col1
+| Row 1, Col2
+
+| Row 2, Col1
+| Row 2, Col2
+
+|===
+
+=== Grid cols
+
+[cols=2*,grid=cols,options=header]
+|===
+| Header 1
+| Header 2
+
+| Row 1, Col1
+| Row 1, Col2
+
+| Row 2, Col1
+| Row 2, Col2
+
+|===
+
+=== Grid rows
+
+[cols=2*,grid=rows,options=header]
+|===
+| Header 1
+| Header 2
+
+| Row 1, Col1
+| Row 1, Col2
+
+| Row 2, Col1
+| Row 2, Col2
+
+|===
+
+== Combo
+
+=== Grid none, frame none
+
+[cols=2*,grid=none,frame=none,options=header]
+|===
+| Header 1
+| Header 2
+
+| Row 1, Col1
+| Row 1, Col2
+
+| Row 2, Col1
+| Row 2, Col2
+
+|===
+
+== Alignments
+
+[cols="^,<,>", options="header"]
+|===
+
+| Name
+| Description
+| Version
+
+| Asciidoctor
+| Awesome way to write documentation
+| 2.0.4
+|===
diff --git a/templates/asciidoctor_revealjs.css.slim b/templates/asciidoctor_revealjs.css.slim
index 9c99dcee..0525d483 100644
--- a/templates/asciidoctor_revealjs.css.slim
+++ b/templates/asciidoctor_revealjs.css.slim
@@ -17,6 +17,38 @@ css:
max-height: 100%;
}
+ /* tables */
+ table{border-collapse:collapse;border-spacing:0}
+ table{margin-bottom:1.25em;border:solid 1px #dedede}
+ table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:.5em .625em .625em;font-size:inherit;text-align:left}
+ table tr th,table tr td{padding:.5625em .625em;font-size:inherit}
+ table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.6}
+ td.tableblock>.content{margin-bottom:1.25em}
+ td.tableblock>.content>:last-child{margin-bottom:-1.25em}
+ table.tableblock,th.tableblock,td.tableblock{border:0 solid #dedede}
+ table.grid-all>thead>tr>.tableblock,table.grid-all>tbody>tr>.tableblock{border-width:0 1px 1px 0}
+ table.grid-all>tfoot>tr>.tableblock{border-width:1px 1px 0 0}
+ table.grid-cols>*>tr>.tableblock{border-width:0 1px 0 0}
+ table.grid-rows>thead>tr>.tableblock,table.grid-rows>tbody>tr>.tableblock{border-width:0 0 1px}
+ table.grid-rows>tfoot>tr>.tableblock{border-width:1px 0 0}
+ table.grid-all>*>tr>.tableblock:last-child,table.grid-cols>*>tr>.tableblock:last-child{border-right-width:0}
+ table.grid-all>tbody>tr:last-child>.tableblock,table.grid-all>thead:last-child>tr>.tableblock,table.grid-rows>tbody>tr:last-child>.tableblock,table.grid-rows>thead:last-child>tr>.tableblock{border-bottom-width:0}
+ table.frame-all{border-width:1px}
+ table.frame-sides{border-width:0 1px}
+ table.frame-topbot,table.frame-ends{border-width:1px 0}
+ .reveal table th.halign-left,.reveal table td.halign-left{text-align:left}
+ .reveal table th.halign-right,.reveal table td.halign-right{text-align:right}
+ .reveal table th.halign-center,.reveal table td.halign-center{text-align:center}
+ .reveal table th.valign-top,.reveal table td.valign-top{vertical-align:top}
+ .reveal table th.valign-bottom,.reveal table td.valign-bottom{vertical-align:bottom}
+ .reveal table th.valign-middle,.reveal table td.valign-middle{vertical-align:middle}
+ table thead th,table tfoot th{font-weight:bold}
+ tbody tr th{display:table-cell;line-height:1.6}
+ tbody tr th,tbody tr th p,tfoot tr th,tfoot tr th p{font-weight:bold}
+ thead{display:table-header-group}
+
+ .reveal table.grid-none th,.reveal table.grid-none td{border-bottom:0!important}
+
/* callouts */
.conum[data-value] {display:inline-block;color:#fff!important;background-color:rgba(50,150,50,.8);-webkit-border-radius:100px;border-radius:100px;text-align:center;font-size:.75em;width:1.67em;height:1.67em;line-height:1.67em;font-family:"Open Sans","DejaVu Sans",sans-serif;font-style:normal;font-weight:bold}
.conum[data-value] *{color:#fff!important}
diff --git a/test/doctest/document.html b/test/doctest/document.html
index 609ed346..a952d3a6 100644
--- a/test/doctest/document.html
+++ b/test/doctest/document.html
@@ -46,6 +46,38 @@
The Dangerous and Thrilling Documentation Chronicles
max-height: 100%;
}
+ /* tables */
+ table{border-collapse:collapse;border-spacing:0}
+ table{margin-bottom:1.25em;border:solid 1px #dedede}
+ table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:.5em .625em .625em;font-size:inherit;text-align:left}
+ table tr th,table tr td{padding:.5625em .625em;font-size:inherit}
+ table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.6}
+ td.tableblock>.content{margin-bottom:1.25em}
+ td.tableblock>.content>:last-child{margin-bottom:-1.25em}
+ table.tableblock,th.tableblock,td.tableblock{border:0 solid #dedede}
+ table.grid-all>thead>tr>.tableblock,table.grid-all>tbody>tr>.tableblock{border-width:0 1px 1px 0}
+ table.grid-all>tfoot>tr>.tableblock{border-width:1px 1px 0 0}
+ table.grid-cols>*>tr>.tableblock{border-width:0 1px 0 0}
+ table.grid-rows>thead>tr>.tableblock,table.grid-rows>tbody>tr>.tableblock{border-width:0 0 1px}
+ table.grid-rows>tfoot>tr>.tableblock{border-width:1px 0 0}
+ table.grid-all>*>tr>.tableblock:last-child,table.grid-cols>*>tr>.tableblock:last-child{border-right-width:0}
+ table.grid-all>tbody>tr:last-child>.tableblock,table.grid-all>thead:last-child>tr>.tableblock,table.grid-rows>tbody>tr:last-child>.tableblock,table.grid-rows>thead:last-child>tr>.tableblock{border-bottom-width:0}
+ table.frame-all{border-width:1px}
+ table.frame-sides{border-width:0 1px}
+ table.frame-topbot,table.frame-ends{border-width:1px 0}
+ .reveal table th.halign-left,.reveal table td.halign-left{text-align:left}
+ .reveal table th.halign-right,.reveal table td.halign-right{text-align:right}
+ .reveal table th.halign-center,.reveal table td.halign-center{text-align:center}
+ .reveal table th.valign-top,.reveal table td.valign-top{vertical-align:top}
+ .reveal table th.valign-bottom,.reveal table td.valign-bottom{vertical-align:bottom}
+ .reveal table th.valign-middle,.reveal table td.valign-middle{vertical-align:middle}
+ table thead th,table tfoot th{font-weight:bold}
+ tbody tr th{display:table-cell;line-height:1.6}
+ tbody tr th,tbody tr th p,tfoot tr th,tfoot tr th p{font-weight:bold}
+ thead{display:table-header-group}
+
+ .reveal table.grid-none th,.reveal table.grid-none td{border-bottom:0!important}
+
/* callouts */
.conum[data-value] {display:inline-block;color:#fff!important;background-color:rgba(50,150,50,.8);-webkit-border-radius:100px;border-radius:100px;text-align:center;font-size:.75em;width:1.67em;height:1.67em;line-height:1.67em;font-family:"Open Sans","DejaVu Sans",sans-serif;font-style:normal;font-weight:bold}
.conum[data-value] *{color:#fff!important}
@@ -244,6 +276,38 @@ The Dangerous and Thrilling Documentation Chronicles
max-height: 100%;
}
+ /* tables */
+ table{border-collapse:collapse;border-spacing:0}
+ table{margin-bottom:1.25em;border:solid 1px #dedede}
+ table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:.5em .625em .625em;font-size:inherit;text-align:left}
+ table tr th,table tr td{padding:.5625em .625em;font-size:inherit}
+ table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.6}
+ td.tableblock>.content{margin-bottom:1.25em}
+ td.tableblock>.content>:last-child{margin-bottom:-1.25em}
+ table.tableblock,th.tableblock,td.tableblock{border:0 solid #dedede}
+ table.grid-all>thead>tr>.tableblock,table.grid-all>tbody>tr>.tableblock{border-width:0 1px 1px 0}
+ table.grid-all>tfoot>tr>.tableblock{border-width:1px 1px 0 0}
+ table.grid-cols>*>tr>.tableblock{border-width:0 1px 0 0}
+ table.grid-rows>thead>tr>.tableblock,table.grid-rows>tbody>tr>.tableblock{border-width:0 0 1px}
+ table.grid-rows>tfoot>tr>.tableblock{border-width:1px 0 0}
+ table.grid-all>*>tr>.tableblock:last-child,table.grid-cols>*>tr>.tableblock:last-child{border-right-width:0}
+ table.grid-all>tbody>tr:last-child>.tableblock,table.grid-all>thead:last-child>tr>.tableblock,table.grid-rows>tbody>tr:last-child>.tableblock,table.grid-rows>thead:last-child>tr>.tableblock{border-bottom-width:0}
+ table.frame-all{border-width:1px}
+ table.frame-sides{border-width:0 1px}
+ table.frame-topbot,table.frame-ends{border-width:1px 0}
+ .reveal table th.halign-left,.reveal table td.halign-left{text-align:left}
+ .reveal table th.halign-right,.reveal table td.halign-right{text-align:right}
+ .reveal table th.halign-center,.reveal table td.halign-center{text-align:center}
+ .reveal table th.valign-top,.reveal table td.valign-top{vertical-align:top}
+ .reveal table th.valign-bottom,.reveal table td.valign-bottom{vertical-align:bottom}
+ .reveal table th.valign-middle,.reveal table td.valign-middle{vertical-align:middle}
+ table thead th,table tfoot th{font-weight:bold}
+ tbody tr th{display:table-cell;line-height:1.6}
+ tbody tr th,tbody tr th p,tfoot tr th,tfoot tr th p{font-weight:bold}
+ thead{display:table-header-group}
+
+ .reveal table.grid-none th,.reveal table.grid-none td{border-bottom:0!important}
+
/* callouts */
.conum[data-value] {display:inline-block;color:#fff!important;background-color:rgba(50,150,50,.8);-webkit-border-radius:100px;border-radius:100px;text-align:center;font-size:.75em;width:1.67em;height:1.67em;line-height:1.67em;font-family:"Open Sans","DejaVu Sans",sans-serif;font-style:normal;font-weight:bold}
.conum[data-value] *{color:#fff!important}
@@ -442,6 +506,38 @@ The Dangerous and Thrilling Documentation Chronicles
max-height: 100%;
}
+ /* tables */
+ table{border-collapse:collapse;border-spacing:0}
+ table{margin-bottom:1.25em;border:solid 1px #dedede}
+ table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:.5em .625em .625em;font-size:inherit;text-align:left}
+ table tr th,table tr td{padding:.5625em .625em;font-size:inherit}
+ table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.6}
+ td.tableblock>.content{margin-bottom:1.25em}
+ td.tableblock>.content>:last-child{margin-bottom:-1.25em}
+ table.tableblock,th.tableblock,td.tableblock{border:0 solid #dedede}
+ table.grid-all>thead>tr>.tableblock,table.grid-all>tbody>tr>.tableblock{border-width:0 1px 1px 0}
+ table.grid-all>tfoot>tr>.tableblock{border-width:1px 1px 0 0}
+ table.grid-cols>*>tr>.tableblock{border-width:0 1px 0 0}
+ table.grid-rows>thead>tr>.tableblock,table.grid-rows>tbody>tr>.tableblock{border-width:0 0 1px}
+ table.grid-rows>tfoot>tr>.tableblock{border-width:1px 0 0}
+ table.grid-all>*>tr>.tableblock:last-child,table.grid-cols>*>tr>.tableblock:last-child{border-right-width:0}
+ table.grid-all>tbody>tr:last-child>.tableblock,table.grid-all>thead:last-child>tr>.tableblock,table.grid-rows>tbody>tr:last-child>.tableblock,table.grid-rows>thead:last-child>tr>.tableblock{border-bottom-width:0}
+ table.frame-all{border-width:1px}
+ table.frame-sides{border-width:0 1px}
+ table.frame-topbot,table.frame-ends{border-width:1px 0}
+ .reveal table th.halign-left,.reveal table td.halign-left{text-align:left}
+ .reveal table th.halign-right,.reveal table td.halign-right{text-align:right}
+ .reveal table th.halign-center,.reveal table td.halign-center{text-align:center}
+ .reveal table th.valign-top,.reveal table td.valign-top{vertical-align:top}
+ .reveal table th.valign-bottom,.reveal table td.valign-bottom{vertical-align:bottom}
+ .reveal table th.valign-middle,.reveal table td.valign-middle{vertical-align:middle}
+ table thead th,table tfoot th{font-weight:bold}
+ tbody tr th{display:table-cell;line-height:1.6}
+ tbody tr th,tbody tr th p,tfoot tr th,tfoot tr th p{font-weight:bold}
+ thead{display:table-header-group}
+
+ .reveal table.grid-none th,.reveal table.grid-none td{border-bottom:0!important}
+
/* callouts */
.conum[data-value] {display:inline-block;color:#fff!important;background-color:rgba(50,150,50,.8);-webkit-border-radius:100px;border-radius:100px;text-align:center;font-size:.75em;width:1.67em;height:1.67em;line-height:1.67em;font-family:"Open Sans","DejaVu Sans",sans-serif;font-style:normal;font-weight:bold}
.conum[data-value] *{color:#fff!important}
@@ -640,6 +736,38 @@ Document Title
max-height: 100%;
}
+ /* tables */
+ table{border-collapse:collapse;border-spacing:0}
+ table{margin-bottom:1.25em;border:solid 1px #dedede}
+ table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:.5em .625em .625em;font-size:inherit;text-align:left}
+ table tr th,table tr td{padding:.5625em .625em;font-size:inherit}
+ table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.6}
+ td.tableblock>.content{margin-bottom:1.25em}
+ td.tableblock>.content>:last-child{margin-bottom:-1.25em}
+ table.tableblock,th.tableblock,td.tableblock{border:0 solid #dedede}
+ table.grid-all>thead>tr>.tableblock,table.grid-all>tbody>tr>.tableblock{border-width:0 1px 1px 0}
+ table.grid-all>tfoot>tr>.tableblock{border-width:1px 1px 0 0}
+ table.grid-cols>*>tr>.tableblock{border-width:0 1px 0 0}
+ table.grid-rows>thead>tr>.tableblock,table.grid-rows>tbody>tr>.tableblock{border-width:0 0 1px}
+ table.grid-rows>tfoot>tr>.tableblock{border-width:1px 0 0}
+ table.grid-all>*>tr>.tableblock:last-child,table.grid-cols>*>tr>.tableblock:last-child{border-right-width:0}
+ table.grid-all>tbody>tr:last-child>.tableblock,table.grid-all>thead:last-child>tr>.tableblock,table.grid-rows>tbody>tr:last-child>.tableblock,table.grid-rows>thead:last-child>tr>.tableblock{border-bottom-width:0}
+ table.frame-all{border-width:1px}
+ table.frame-sides{border-width:0 1px}
+ table.frame-topbot,table.frame-ends{border-width:1px 0}
+ .reveal table th.halign-left,.reveal table td.halign-left{text-align:left}
+ .reveal table th.halign-right,.reveal table td.halign-right{text-align:right}
+ .reveal table th.halign-center,.reveal table td.halign-center{text-align:center}
+ .reveal table th.valign-top,.reveal table td.valign-top{vertical-align:top}
+ .reveal table th.valign-bottom,.reveal table td.valign-bottom{vertical-align:bottom}
+ .reveal table th.valign-middle,.reveal table td.valign-middle{vertical-align:middle}
+ table thead th,table tfoot th{font-weight:bold}
+ tbody tr th{display:table-cell;line-height:1.6}
+ tbody tr th,tbody tr th p,tfoot tr th,tfoot tr th p{font-weight:bold}
+ thead{display:table-header-group}
+
+ .reveal table.grid-none th,.reveal table.grid-none td{border-bottom:0!important}
+
/* callouts */
.conum[data-value] {display:inline-block;color:#fff!important;background-color:rgba(50,150,50,.8);-webkit-border-radius:100px;border-radius:100px;text-align:center;font-size:.75em;width:1.67em;height:1.67em;line-height:1.67em;font-family:"Open Sans","DejaVu Sans",sans-serif;font-style:normal;font-weight:bold}
.conum[data-value] *{color:#fff!important}
@@ -838,6 +966,38 @@ Document Title
max-height: 100%;
}
+ /* tables */
+ table{border-collapse:collapse;border-spacing:0}
+ table{margin-bottom:1.25em;border:solid 1px #dedede}
+ table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:.5em .625em .625em;font-size:inherit;text-align:left}
+ table tr th,table tr td{padding:.5625em .625em;font-size:inherit}
+ table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.6}
+ td.tableblock>.content{margin-bottom:1.25em}
+ td.tableblock>.content>:last-child{margin-bottom:-1.25em}
+ table.tableblock,th.tableblock,td.tableblock{border:0 solid #dedede}
+ table.grid-all>thead>tr>.tableblock,table.grid-all>tbody>tr>.tableblock{border-width:0 1px 1px 0}
+ table.grid-all>tfoot>tr>.tableblock{border-width:1px 1px 0 0}
+ table.grid-cols>*>tr>.tableblock{border-width:0 1px 0 0}
+ table.grid-rows>thead>tr>.tableblock,table.grid-rows>tbody>tr>.tableblock{border-width:0 0 1px}
+ table.grid-rows>tfoot>tr>.tableblock{border-width:1px 0 0}
+ table.grid-all>*>tr>.tableblock:last-child,table.grid-cols>*>tr>.tableblock:last-child{border-right-width:0}
+ table.grid-all>tbody>tr:last-child>.tableblock,table.grid-all>thead:last-child>tr>.tableblock,table.grid-rows>tbody>tr:last-child>.tableblock,table.grid-rows>thead:last-child>tr>.tableblock{border-bottom-width:0}
+ table.frame-all{border-width:1px}
+ table.frame-sides{border-width:0 1px}
+ table.frame-topbot,table.frame-ends{border-width:1px 0}
+ .reveal table th.halign-left,.reveal table td.halign-left{text-align:left}
+ .reveal table th.halign-right,.reveal table td.halign-right{text-align:right}
+ .reveal table th.halign-center,.reveal table td.halign-center{text-align:center}
+ .reveal table th.valign-top,.reveal table td.valign-top{vertical-align:top}
+ .reveal table th.valign-bottom,.reveal table td.valign-bottom{vertical-align:bottom}
+ .reveal table th.valign-middle,.reveal table td.valign-middle{vertical-align:middle}
+ table thead th,table tfoot th{font-weight:bold}
+ tbody tr th{display:table-cell;line-height:1.6}
+ tbody tr th,tbody tr th p,tfoot tr th,tfoot tr th p{font-weight:bold}
+ thead{display:table-header-group}
+
+ .reveal table.grid-none th,.reveal table.grid-none td{border-bottom:0!important}
+
/* callouts */
.conum[data-value] {display:inline-block;color:#fff!important;background-color:rgba(50,150,50,.8);-webkit-border-radius:100px;border-radius:100px;text-align:center;font-size:.75em;width:1.67em;height:1.67em;line-height:1.67em;font-family:"Open Sans","DejaVu Sans",sans-serif;font-style:normal;font-weight:bold}
.conum[data-value] *{color:#fff!important}
@@ -1035,6 +1195,38 @@ Document Title
max-height: 100%;
}
+ /* tables */
+ table{border-collapse:collapse;border-spacing:0}
+ table{margin-bottom:1.25em;border:solid 1px #dedede}
+ table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:.5em .625em .625em;font-size:inherit;text-align:left}
+ table tr th,table tr td{padding:.5625em .625em;font-size:inherit}
+ table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.6}
+ td.tableblock>.content{margin-bottom:1.25em}
+ td.tableblock>.content>:last-child{margin-bottom:-1.25em}
+ table.tableblock,th.tableblock,td.tableblock{border:0 solid #dedede}
+ table.grid-all>thead>tr>.tableblock,table.grid-all>tbody>tr>.tableblock{border-width:0 1px 1px 0}
+ table.grid-all>tfoot>tr>.tableblock{border-width:1px 1px 0 0}
+ table.grid-cols>*>tr>.tableblock{border-width:0 1px 0 0}
+ table.grid-rows>thead>tr>.tableblock,table.grid-rows>tbody>tr>.tableblock{border-width:0 0 1px}
+ table.grid-rows>tfoot>tr>.tableblock{border-width:1px 0 0}
+ table.grid-all>*>tr>.tableblock:last-child,table.grid-cols>*>tr>.tableblock:last-child{border-right-width:0}
+ table.grid-all>tbody>tr:last-child>.tableblock,table.grid-all>thead:last-child>tr>.tableblock,table.grid-rows>tbody>tr:last-child>.tableblock,table.grid-rows>thead:last-child>tr>.tableblock{border-bottom-width:0}
+ table.frame-all{border-width:1px}
+ table.frame-sides{border-width:0 1px}
+ table.frame-topbot,table.frame-ends{border-width:1px 0}
+ .reveal table th.halign-left,.reveal table td.halign-left{text-align:left}
+ .reveal table th.halign-right,.reveal table td.halign-right{text-align:right}
+ .reveal table th.halign-center,.reveal table td.halign-center{text-align:center}
+ .reveal table th.valign-top,.reveal table td.valign-top{vertical-align:top}
+ .reveal table th.valign-bottom,.reveal table td.valign-bottom{vertical-align:bottom}
+ .reveal table th.valign-middle,.reveal table td.valign-middle{vertical-align:middle}
+ table thead th,table tfoot th{font-weight:bold}
+ tbody tr th{display:table-cell;line-height:1.6}
+ tbody tr th,tbody tr th p,tfoot tr th,tfoot tr th p{font-weight:bold}
+ thead{display:table-header-group}
+
+ .reveal table.grid-none th,.reveal table.grid-none td{border-bottom:0!important}
+
/* callouts */
.conum[data-value] {display:inline-block;color:#fff!important;background-color:rgba(50,150,50,.8);-webkit-border-radius:100px;border-radius:100px;text-align:center;font-size:.75em;width:1.67em;height:1.67em;line-height:1.67em;font-family:"Open Sans","DejaVu Sans",sans-serif;font-style:normal;font-weight:bold}
.conum[data-value] *{color:#fff!important}
@@ -1234,6 +1426,38 @@ Document Title
max-height: 100%;
}
+ /* tables */
+ table{border-collapse:collapse;border-spacing:0}
+ table{margin-bottom:1.25em;border:solid 1px #dedede}
+ table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:.5em .625em .625em;font-size:inherit;text-align:left}
+ table tr th,table tr td{padding:.5625em .625em;font-size:inherit}
+ table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.6}
+ td.tableblock>.content{margin-bottom:1.25em}
+ td.tableblock>.content>:last-child{margin-bottom:-1.25em}
+ table.tableblock,th.tableblock,td.tableblock{border:0 solid #dedede}
+ table.grid-all>thead>tr>.tableblock,table.grid-all>tbody>tr>.tableblock{border-width:0 1px 1px 0}
+ table.grid-all>tfoot>tr>.tableblock{border-width:1px 1px 0 0}
+ table.grid-cols>*>tr>.tableblock{border-width:0 1px 0 0}
+ table.grid-rows>thead>tr>.tableblock,table.grid-rows>tbody>tr>.tableblock{border-width:0 0 1px}
+ table.grid-rows>tfoot>tr>.tableblock{border-width:1px 0 0}
+ table.grid-all>*>tr>.tableblock:last-child,table.grid-cols>*>tr>.tableblock:last-child{border-right-width:0}
+ table.grid-all>tbody>tr:last-child>.tableblock,table.grid-all>thead:last-child>tr>.tableblock,table.grid-rows>tbody>tr:last-child>.tableblock,table.grid-rows>thead:last-child>tr>.tableblock{border-bottom-width:0}
+ table.frame-all{border-width:1px}
+ table.frame-sides{border-width:0 1px}
+ table.frame-topbot,table.frame-ends{border-width:1px 0}
+ .reveal table th.halign-left,.reveal table td.halign-left{text-align:left}
+ .reveal table th.halign-right,.reveal table td.halign-right{text-align:right}
+ .reveal table th.halign-center,.reveal table td.halign-center{text-align:center}
+ .reveal table th.valign-top,.reveal table td.valign-top{vertical-align:top}
+ .reveal table th.valign-bottom,.reveal table td.valign-bottom{vertical-align:bottom}
+ .reveal table th.valign-middle,.reveal table td.valign-middle{vertical-align:middle}
+ table thead th,table tfoot th{font-weight:bold}
+ tbody tr th{display:table-cell;line-height:1.6}
+ tbody tr th,tbody tr th p,tfoot tr th,tfoot tr th p{font-weight:bold}
+ thead{display:table-header-group}
+
+ .reveal table.grid-none th,.reveal table.grid-none td{border-bottom:0!important}
+
/* callouts */
.conum[data-value] {display:inline-block;color:#fff!important;background-color:rgba(50,150,50,.8);-webkit-border-radius:100px;border-radius:100px;text-align:center;font-size:.75em;width:1.67em;height:1.67em;line-height:1.67em;font-family:"Open Sans","DejaVu Sans",sans-serif;font-style:normal;font-weight:bold}
.conum[data-value] *{color:#fff!important}
@@ -1433,6 +1657,38 @@ Cavern Glow
max-height: 100%;
}
+ /* tables */
+ table{border-collapse:collapse;border-spacing:0}
+ table{margin-bottom:1.25em;border:solid 1px #dedede}
+ table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:.5em .625em .625em;font-size:inherit;text-align:left}
+ table tr th,table tr td{padding:.5625em .625em;font-size:inherit}
+ table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.6}
+ td.tableblock>.content{margin-bottom:1.25em}
+ td.tableblock>.content>:last-child{margin-bottom:-1.25em}
+ table.tableblock,th.tableblock,td.tableblock{border:0 solid #dedede}
+ table.grid-all>thead>tr>.tableblock,table.grid-all>tbody>tr>.tableblock{border-width:0 1px 1px 0}
+ table.grid-all>tfoot>tr>.tableblock{border-width:1px 1px 0 0}
+ table.grid-cols>*>tr>.tableblock{border-width:0 1px 0 0}
+ table.grid-rows>thead>tr>.tableblock,table.grid-rows>tbody>tr>.tableblock{border-width:0 0 1px}
+ table.grid-rows>tfoot>tr>.tableblock{border-width:1px 0 0}
+ table.grid-all>*>tr>.tableblock:last-child,table.grid-cols>*>tr>.tableblock:last-child{border-right-width:0}
+ table.grid-all>tbody>tr:last-child>.tableblock,table.grid-all>thead:last-child>tr>.tableblock,table.grid-rows>tbody>tr:last-child>.tableblock,table.grid-rows>thead:last-child>tr>.tableblock{border-bottom-width:0}
+ table.frame-all{border-width:1px}
+ table.frame-sides{border-width:0 1px}
+ table.frame-topbot,table.frame-ends{border-width:1px 0}
+ .reveal table th.halign-left,.reveal table td.halign-left{text-align:left}
+ .reveal table th.halign-right,.reveal table td.halign-right{text-align:right}
+ .reveal table th.halign-center,.reveal table td.halign-center{text-align:center}
+ .reveal table th.valign-top,.reveal table td.valign-top{vertical-align:top}
+ .reveal table th.valign-bottom,.reveal table td.valign-bottom{vertical-align:bottom}
+ .reveal table th.valign-middle,.reveal table td.valign-middle{vertical-align:middle}
+ table thead th,table tfoot th{font-weight:bold}
+ tbody tr th{display:table-cell;line-height:1.6}
+ tbody tr th,tbody tr th p,tfoot tr th,tfoot tr th p{font-weight:bold}
+ thead{display:table-header-group}
+
+ .reveal table.grid-none th,.reveal table.grid-none td{border-bottom:0!important}
+
/* callouts */
.conum[data-value] {display:inline-block;color:#fff!important;background-color:rgba(50,150,50,.8);-webkit-border-radius:100px;border-radius:100px;text-align:center;font-size:.75em;width:1.67em;height:1.67em;line-height:1.67em;font-family:"Open Sans","DejaVu Sans",sans-serif;font-style:normal;font-weight:bold}
.conum[data-value] *{color:#fff!important}