CSS tweaks to import/export (#121)

This commit is contained in:
Tim Mickel 2016-09-02 08:41:12 -04:00 committed by GitHub
parent 4586507a8a
commit bb48189e6f
2 changed files with 10 additions and 1 deletions

View file

@ -37,7 +37,7 @@
   
<input type="button" value="Import from XML" onclick="fromXml()" id="import"> <input type="button" value="Import from XML" onclick="fromXml()" id="import">
<br><br> <br><br>
<textarea id="importExport" style="width: 480px; height: 360px"></textarea> <textarea id="importExport"></textarea>
</p> </p>
</div> </div>
</div> </div>

View file

@ -35,3 +35,12 @@ a {
#tab-blockexplorer, #tab-threadexplorer, #tab-importexport { #tab-blockexplorer, #tab-threadexplorer, #tab-importexport {
display: none; display: none;
} }
#importExport {
width: 400px;
height: 360px;
background: rgb(36,36,36);
color: rgb(217,217,217);
font-family: monospace;
font-size: 10pt;
}