Skip to content

Commit e1f8203

Browse files
committed
formatting updates
1 parent 60553d3 commit e1f8203

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ README last updated: 20 Dec 2020
88

99
![screenshot](https://github.com/vtlim/textsmoosh/blob/master/screenshot.png)
1010

11+
12+
## Development setup
13+
```
14+
conda create -n app_txt python=3.6
15+
conda activate app_txt
16+
conda install -c anaconda flask gunicorn
17+
```
18+
1119
## Contributors
1220
Victoria Lim
1321

screenshot.png

0 Bytes
Loading

static/styles/main.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
font-size: 14px;
66
padding-left: 15px;
77
padding-top: 0.015px;
8-
padding-bottom: 0.012px;
8+
padding-bottom: 0.015px;
99
margin-top: 0px;
1010
}
1111

templates/mainpage.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<body>
1010

1111
<div class="header">
12-
<h1>Process and combine multi-line text into a single line</h1>
12+
<h1 style="font-family:calibri;">Process and combine multi-line text into a single line</h1>
1313
</div>
1414

1515
<form method="POST" class="myform">
@@ -41,12 +41,12 @@ <h1>Process and combine multi-line text into a single line</h1>
4141
<label for="textbox-rm-end" class="options-label2">Remove this many characters from the <b>end</b> of each line.</label>
4242
<br>
4343
<input type="checkbox" id="checkbox-spaces" name="remove-all-spaces"/>
44-
<label for="checkbox-spaces" class="options-label1">Remove ALL whitespace characters in each line</label>
44+
<label for="checkbox-spaces" class="options-label1">Remove ALL whitespace characters in each line.</label>
4545
<br>
4646
<input id="textbox-delimiter" name="delimiter" style="width:40px"/>
4747
<label for="textbox-delimiter" class="options-label2">Insert character(s) between each line before combining.<br>Leave empty for no delimiter.</label>
4848
</div>
49-
49+
5050
</form>
5151

5252
</body>

0 commit comments

Comments
 (0)