@farberg/reveal-template 1.1.38 → 1.1.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/dhbw.css +8 -0
- package/package.json +1 -1
package/css/dhbw.css
CHANGED
|
@@ -283,6 +283,11 @@ body {
|
|
|
283
283
|
border-collapse: collapse;
|
|
284
284
|
border-spacing: 0;
|
|
285
285
|
font-size: 70%;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
/* Outer/cell borders only for content tables, not the toc_table
|
|
289
|
+
(which has its own border rules further down). */
|
|
290
|
+
.reveal table:not(.toc_table) {
|
|
286
291
|
border: 1px solid #d0d0d0;
|
|
287
292
|
}
|
|
288
293
|
|
|
@@ -293,6 +298,9 @@ body {
|
|
|
293
298
|
.reveal table th, .reveal table td {
|
|
294
299
|
text-align: left;
|
|
295
300
|
padding: 0.2em 0.5em 0.2em 0.5em;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.reveal table:not(.toc_table) th, .reveal table:not(.toc_table) td {
|
|
296
304
|
border: 1px solid #d0d0d0;
|
|
297
305
|
}
|
|
298
306
|
|