diff options
author | Teddy Wing | 2017-04-19 16:49:57 +0200 |
---|---|---|
committer | Teddy Wing | 2017-04-19 16:49:57 +0200 |
commit | 061c92ef8839a98e10e5e731e5c2b35340400ee3 (patch) | |
tree | 31e318507c263bea3d3492fcfe0456dc74508e3e | |
parent | 9d2a22d7bd0145245a927d6f1a5820cc466032f9 (diff) | |
download | geo-feature-examiner-061c92ef8839a98e10e5e731e5c2b35340400ee3.tar.bz2 |
index.html: Make the input & output textareas more readable
Increase the dimensions of the textareas and set a more readable font
face & size.
-rw-r--r-- | index.html | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -5,6 +5,13 @@ <title>Geo Feature Explorer</title> <link rel="stylesheet" href="https://openlayers.org/en/v4.1.0/css/ol.css" type="text/css"> + <style> + textarea { + width: 500px; + height: 200px; + font: 12px Monaco, Courier, monospace; + } + </style> </head> <body> <textarea class="js-wkt"></textarea> |