From bb48189e6f111ec56e040b807d571d2a3874f59f Mon Sep 17 00:00:00 2001
From: Tim Mickel <tim.mickel@gmail.com>
Date: Fri, 2 Sep 2016 08:41:12 -0400
Subject: [PATCH] CSS tweaks to import/export (#121)

---
 playground/index.html     | 2 +-
 playground/playground.css | 9 +++++++++
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/playground/index.html b/playground/index.html
index 0492fac97..abd8e9e0b 100644
--- a/playground/index.html
+++ b/playground/index.html
@@ -37,7 +37,7 @@
                 &nbsp;
                 <input type="button" value="Import from XML" onclick="fromXml()" id="import">
                 <br><br>
-                <textarea id="importExport" style="width: 480px; height: 360px"></textarea>
+                <textarea id="importExport"></textarea>
             </p>
         </div>
     </div>
diff --git a/playground/playground.css b/playground/playground.css
index c2f65505a..32dd55836 100644
--- a/playground/playground.css
+++ b/playground/playground.css
@@ -35,3 +35,12 @@ a {
 #tab-blockexplorer, #tab-threadexplorer, #tab-importexport {
     display: none;
 }
+
+#importExport {
+    width: 400px;
+    height: 360px;
+    background: rgb(36,36,36);
+    color: rgb(217,217,217);
+    font-family: monospace;
+    font-size: 10pt;
+}