Skip to content

Commit

Permalink
Merge pull request #222 from Kavish-Paraswar/BOOK_CAB
Browse files Browse the repository at this point in the history
UI and Layout Enhancements for Travel Application #100
  • Loading branch information
PriyaGhosal authored Oct 8, 2024
2 parents f554347 + f38312a commit 02dcc92
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ <h3>Romantic Getaway</h3>
margin-left: 40px;
display: flex;
justify-content: center;
align-items: center;
align-items: flex-start;
flex-direction: column;
"
>
Expand Down Expand Up @@ -474,10 +474,10 @@ <h3>Romantic Getaway</h3>
/><br /><br />
</div>
<div style="display: flex">
<label style="font-size: 1.5em" for="vehicle-type"
<label style="font-size: 1.5em; margin-top: 7px;" for="vehicle-type"
>Vehicle Type:</label
>
<select id="vehicle-type" name="vehicle-type" required>
<select id="vehicle-type" name="vehicle-type" style="width: 150px;" required >
<option value="cab">Cab</option>
<option value="auto">Auto</option></select
><br /><br />
Expand Down
12 changes: 6 additions & 6 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1058,14 +1058,14 @@ body.dark-mode {
}

.recommendations-section h2 {
font-size: 2em;
font-size: 3em;
margin-bottom: 20px;
text-align: center;
color: #0056b3; /* Dark blue for headings */
}

.recommendations-section p {
font-size: 1.1em;
font-size: 1.5em;
text-align: center;
margin-bottom: 30px;
color: black; /* Darker gray for text */
Expand All @@ -1083,19 +1083,19 @@ body.dark-mode {
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
max-width: 300px;
max-width: 30%;
text-align: center;
border: 2px solid #0056b3; /* Blue border */
/* border: 2px solid #0056b3; Blue border */
}

.recommendation-item h3 {
font-size: 1.5em;
font-size: 2em;
margin-bottom: 15px;
color: #0056b3; /* Dark blue for headings */
}

.recommendation-item p {
font-size: 1em;
font-size: 1.5em;
margin-bottom: 20px;
color: black; /* Darker gray for text */
}
Expand Down

0 comments on commit 02dcc92

Please sign in to comment.