Skip to content

Commit

Permalink
style: improve form layout and button appearance
Browse files Browse the repository at this point in the history
  • Loading branch information
veepanshu-kasana committed Nov 9, 2024
1 parent a22e582 commit 4f5fb11
Showing 1 changed file with 27 additions and 4 deletions.
31 changes: 27 additions & 4 deletions sell.html
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,29 @@
width: 100%;
align-items: center;
text-align: left;
margin-bottom: 10px;
padding: 20px;
}

#form-input {
width: 450px;
padding: 8px 12px;
border-bottom: 4px;
border: 1px solid #e2e8f0;
background-color: white;
}

#form-input2 {
width: 450px;
padding: 8px 12px;
border-bottom: 4px;
border: 1px solid #e2e8f0;
background-color: white;
}

.form-label {
margin-right: 10px;
padding-left: 60px;
}

form label {
Expand Down Expand Up @@ -1052,14 +1075,14 @@ <h1>Sell Bus Ticket</h1>
</div>

<div class="form-cont">
<label for="seatNumber">Seat Number:</label>
<input type="text" id="seatNumber" placeholder="Enter seat number" required>
<label class="form-label" for="form-input">Seat Number:</label>
<input type="text" id="form-input" placeholder="Enter seat number" required>
</div>


<div class="form-cont">
<label for="price">Original Price:</label>
<input type="number" id="price" placeholder="Enter ticket price" required>
<label class="form-label" for="form-input2">Original Price:</label>
<input type="number" id="form-input2" placeholder="Enter ticket price" required>
</div>

<button type="submit" class="btn">Submit Ticket</button>
Expand Down

0 comments on commit 4f5fb11

Please sign in to comment.