Permalink
Please sign in to comment.
Showing
with
159 additions
and 15 deletions.
- +134 −6 Diagrams.ipynb
- +18 −6 style-table.css
- +7 −3 tmp.dot
140
Diagrams.ipynb
| @@ -1,18 +1,30 @@ | ||
| body { | ||
| margin: 0; | ||
| - color: blue; | ||
| font-family: Helvetica; | ||
| } | ||
| -table { | ||
| +table.dataframe { | ||
| border-collapse: collapse; | ||
| border: none; | ||
| } | ||
| -td, th { | ||
| +table.dataframe tr { | ||
| border: none; | ||
| +} | ||
| +table.dataframe td, table.dataframe th { | ||
| margin: 0; | ||
| - padding-left: 0.5em; | ||
| + border: 1px solid white; | ||
| + padding-left: 0.25em; | ||
| + padding-right: 0.25em; | ||
| } | ||
| -th { | ||
| +table.dataframe th:not(:empty) { | ||
| + background-color: #fec; | ||
| text-align: left; | ||
| - color: red; | ||
| + font-weight: normal; | ||
| +} | ||
| +table.dataframe tr:nth-child(2) th:empty { | ||
| + border-left: none; | ||
| + border-right: 1px dashed #888; | ||
| +} | ||
| +table.dataframe td { | ||
| + border: 2px solid #ccf; | ||
| + background-color: #f4f4ff; | ||
| } |
0 comments on commit
753c4e0