@farberg/reveal-template 1.1.37 → 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 +15 -5
- package/docs/00 - Introduction.md +11 -0
- package/package.json +1 -1
package/css/dhbw.css
CHANGED
|
@@ -283,7 +283,12 @@ body {
|
|
|
283
283
|
border-collapse: collapse;
|
|
284
284
|
border-spacing: 0;
|
|
285
285
|
font-size: 70%;
|
|
286
|
+
}
|
|
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) {
|
|
291
|
+
border: 1px solid #d0d0d0;
|
|
287
292
|
}
|
|
288
293
|
|
|
289
294
|
.reveal table th {
|
|
@@ -293,7 +298,16 @@ 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;
|
|
296
|
-
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.reveal table:not(.toc_table) th, .reveal table:not(.toc_table) td {
|
|
304
|
+
border: 1px solid #d0d0d0;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
/* Zebra striping: alternating white / very light grey rows.
|
|
308
|
+
The toc_table has its own border/background rules, so exclude it. */
|
|
309
|
+
.reveal table:not(.toc_table) tbody tr:nth-child(even) {
|
|
310
|
+
background-color: #fbfbfb;
|
|
297
311
|
}
|
|
298
312
|
|
|
299
313
|
.reveal table th[align="center"], .reveal table td[align="center"] {
|
|
@@ -304,10 +318,6 @@ body {
|
|
|
304
318
|
text-align: right;
|
|
305
319
|
}
|
|
306
320
|
|
|
307
|
-
.reveal table tr:last-child td {
|
|
308
|
-
border-bottom: none;
|
|
309
|
-
}
|
|
310
|
-
|
|
311
321
|
.reveal sup {
|
|
312
322
|
vertical-align: super;
|
|
313
323
|
}
|
|
@@ -37,6 +37,17 @@ test-code.c
|
|
|
37
37
|
test-code.c
|
|
38
38
|
</pre>
|
|
39
39
|
|
|
40
|
+
---
|
|
41
|
+
# Table
|
|
42
|
+
|
|
43
|
+
| Name | Description |
|
|
44
|
+
| ------------ | ----------------------------------------------------------------------- |
|
|
45
|
+
| File sink | Stores the output to a directory |
|
|
46
|
+
| Kafka sink | Stores the output to one or more topics in Kafka |
|
|
47
|
+
| Foreach sink | Runs arbitrary computation on each record |
|
|
48
|
+
| Console sink | Prints to stdout (debug only, collects data in driver program) |
|
|
49
|
+
| Memory sink | Stored as in-memory table (debug only, collects data in driver program) |
|
|
50
|
+
|
|
40
51
|
---
|
|
41
52
|
## Mermaid Example
|
|
42
53
|
|