Skip to content

Commit 137f45a

Browse files
committed
fixed placeholder width
1 parent c07b28e commit 137f45a

File tree

3 files changed

+11
-18
lines changed

3 files changed

+11
-18
lines changed

07. Cash Calculator Application/assets/favicon.svg

Lines changed: 1 addition & 1 deletion
Loading

07. Cash Calculator Application/index.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,34 +30,34 @@ <h1>Cash Calculator</h1>
3030
<img src="assets/images/two_thousand_note.png" alt="">
3131
<label for="et2000"></label>
3232
<input type="number" id="et2000" class="cash-input"
33-
placeholder="Enter No. of Rs.2000 Notes">
33+
placeholder="No. of Rs.2000 Notes">
3434
</div>
3535

3636
<div class="row">
3737
<img src="assets/images/five_hundred_note.png" alt="">
3838
<label for="et500"></label>
3939
<input type="number" id="et500" class="cash-input"
40-
placeholder="Enter No. of Rs.500 Notes">
40+
placeholder="No. of Rs.500 Notes">
4141
</div>
4242
<div class="row">
4343
<img src="assets/images/two_hundred_note.png" alt="">
4444
<label for="et200">
4545
</label>
4646
<input type="number" id="et200" class="cash-input"
47-
placeholder="Enter No. of Rs.200 Notes">
47+
placeholder="No. of Rs.200 Notes">
4848
</div>
4949

5050
<div class="row">
5151
<img src="assets/images/one_hundred.png" alt="">
5252
<label for="et100"></label>
5353
<input type="number" id="et100" class="cash-input"
54-
placeholder="Enter No. of Rs.100 Notes">
54+
placeholder="No. of Rs.100 Notes">
5555
</div>
5656
<div class="row">
5757
<img src="assets/images/fifty_note.png" alt="">
5858
<label for="et50"></label>
5959
<input type="number" id="et50" class="cash-input"
60-
placeholder="Enter No. of Rs.50 Notes">
60+
placeholder="No. of Rs.50 Notes">
6161
</div>
6262
</div>
6363

@@ -67,32 +67,32 @@ <h1>Cash Calculator</h1>
6767
<img src="assets/images/twenty_note.png" alt="">
6868
<label for="et20"></label>
6969
<input type="number" id="et20" class="cash-input"
70-
placeholder="Enter No. of Rs.20 Notes">
70+
placeholder="No. of Rs.20 Notes">
7171
</div>
7272

7373
<div class="row">
7474
<img src="assets/images/ten_note.png" alt="">
7575
<label for="et10"></label>
7676
<input type="number" id="et10" class="cash-input"
77-
placeholder="Enter No. of Rs.10 Notes">
77+
placeholder="No. of Rs.10 Notes">
7878
</div>
7979

8080
<div class="row">
8181
<img src="assets/images/five_note.png" alt="">
8282
<label for="et5"></label>
83-
<input type="number" id="et5" class="cash-input" placeholder="Enter No. of Rs.5 Notes">
83+
<input type="number" id="et5" class="cash-input" placeholder="No. of Rs.5 Notes">
8484
</div>
8585

8686
<div class="row">
8787
<img src="assets/images/two_note.png" alt="">
8888
<label for="et2"></label>
89-
<input type="number" id="et2" class="cash-input" placeholder="Enter No. of Rs.2 Notes">
89+
<input type="number" id="et2" class="cash-input" placeholder="No. of Rs.2 Notes">
9090
</div>
9191

9292
<div class="row">
9393
<img src="assets/images/one_note.png" alt="">
9494
<label for="et1"></label>
95-
<input type="number" id="et1" class="cash-input" placeholder="Enter No. of Rs.1 Notes">
95+
<input type="number" id="et1" class="cash-input" placeholder="No. of Rs.1 Notes">
9696
</div>
9797
</div>
9898
</section>

07. Cash Calculator Application/style.css

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,6 @@ h1 {
3636
font-weight: lighter;
3737
}
3838

39-
input:focus {
40-
outline: none;
41-
}
42-
4339
input {
4440
font-size: 1rem;
4541
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
@@ -91,9 +87,6 @@ button:active {
9187
padding: 0.5rem 1rem;
9288
border: 0.0625rem solid #2c3239;
9389
font-weight: bold;
94-
/* display: flex;
95-
flex-wrap: wrap;
96-
align-content: center;*/
9790
}
9891

9992
footer {

0 commit comments

Comments
 (0)