diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2014-06-08 10:43:50 +0300 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2014-06-08 10:43:50 +0300 |
| commit | ac0872d9d377f2222de91fd85d05a2a998737e3c (patch) | |
| tree | 7f9582586872a03bc63b996e434698a274c37d96 | |
| parent | 23536127ff0f4a902968b724a6686d28550f811b (diff) | |
Textarea fonts
| -rw-r--r-- | static/css/main.css | 3 | ||||
| -rw-r--r-- | templates/home.html | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/static/css/main.css b/static/css/main.css index e69de29..3e60944 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -0,0 +1,3 @@ +textarea { + font-family: Menlo,Monaco,Consolas,"Courier New",monospace; +} diff --git a/templates/home.html b/templates/home.html index e7bbbd0..0637267 100644 --- a/templates/home.html +++ b/templates/home.html @@ -97,7 +97,7 @@ <div class="row"> <div class="col-md-6"> <h2>Sequences</h2> - <textarea id="sequences-area" cols="60" rows="20"></textarea> + <textarea id="sequences-area" cols="50" rows="20"></textarea> <h4>Sequence Format</h4> <pre> # sequence_name @@ -114,7 +114,7 @@ </div> <div class="col-md-6"> <h2>Composition</h2> - <textarea id="composition-area" cols="80" rows="20"></textarea> + <textarea id="composition-area" cols="60" rows="20"></textarea> <h4>Composition Format</h4> <pre> # composition_100 |
