summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2017-01-09 22:02:22 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2017-01-09 22:02:22 -0500
commit8fc346426bad64035330c8b394b8a515beb8d9d5 (patch)
treea85fe1bd094aa15584571fb297d255ba513212f9
parenta8d489ff56083394ccbf64db365d53f66770253a (diff)
Make D&D tables look more like org-mode export.
-rw-r--r--TODO.org1
-rw-r--r--src/main.scss13
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; }