diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2017-01-09 22:02:22 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2017-01-09 22:02:22 -0500 |
commit | 8fc346426bad64035330c8b394b8a515beb8d9d5 (patch) | |
tree | a85fe1bd094aa15584571fb297d255ba513212f9 | |
parent | a8d489ff56083394ccbf64db365d53f66770253a (diff) |
Make D&D tables look more like org-mode export.
-rw-r--r-- | TODO.org | 1 | ||||
-rw-r--r-- | src/main.scss | 13 |
2 files changed, 13 insertions, 1 deletions
diff --git a/TODO.org b/TODO.org deleted file mode 100644 index 04e07b8..0000000 --- a/TODO.org +++ /dev/null @@ -1 +0,0 @@ -- org tables (style) diff --git a/src/main.scss b/src/main.scss index 7f43a61..9fc3ef2 100644 --- a/src/main.scss +++ b/src/main.scss @@ -162,6 +162,19 @@ body.dnd { font-family: Times, serif; font-size: 12pt; + table { + border-spacing: 0; + &, tr:last-child td, tr:last-child th { + border-bottom: solid 1px black; + } + &, tr:first-child td, tr:first-child th { + border-top: solid 1px black; + } + td, th { + padding: 6px; + } + } + p { text-align: justify; } .title { text-align: center; } .todo { color: red; } |