Skip to content

Commit

Permalink
Merge pull request #1039 from Subhajit-2023-44/FooterHeader
Browse files Browse the repository at this point in the history
Fixed misalignment issue ! #1034 #1036
  • Loading branch information
PriyaGhosal authored Oct 19, 2024
2 parents 3ff2c0c + 6abe785 commit 276c7d0
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 22 deletions.
22 changes: 16 additions & 6 deletions hotel.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;

font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;

}

/* Header styles */
Expand All @@ -14,6 +16,14 @@ body {
padding: 20px;
}

.main-head {

background: #000000;
color: white;
padding: 20px;

}

nav {
display: flex;
justify-content: space-between;
Expand Down
12 changes: 10 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1534,9 +1534,17 @@ <h3>Share Your Experiences</h3>

transition: color 0.3s ease;
}

form {



display: flex;
flex-direction: column;
gap: 15px;
animation: fadeIn 0.8s ease-out;
width: 220px

}

form {
display: flex;
flex-direction: column;
Expand Down
49 changes: 35 additions & 14 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1165,36 +1165,57 @@ footer {
color: #ffffff;
text-align: center;
}

.footer-container {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 20px;
max-width: 1200px;
margin: auto;
}

.footer-column {
flex: 1;
min-width: 200px;
margin: 10px;
display: flex;
justify-content: space-around;
gap: 20px;
max-width: 1200px;
margin: auto;
margin-left: 20px;

}

.footer-column {

flex: 1;
min-width: 200px;
margin: 10px;

}

.footer-column p{
color:white;
}

.footer-column a {

font-size: 16px;
line-height: 2;

}

.footer-column a {
font-size: 16px;
line-height: 2;

font-size: 16px;
line-height: 2;

}

#footer-contact-us{
display: flex;
flex-direction: column;
}

.footer-column h3 {

margin-bottom: 5px;
font-size: 18px;
color: #f39c12;

}

.footer-column h3 {
margin-bottom: 5px;
font-size: 18px;
Expand Down

0 comments on commit 276c7d0

Please sign in to comment.