Skip to content

Commit

Permalink
Merge pull request #1601 from Adarsh-Chaubey03/main
Browse files Browse the repository at this point in the history
Multiple Minor Fixes And Enhancement In Websites
  • Loading branch information
samarth-6 authored Oct 28, 2024
2 parents 1142ee9 + 2173eb4 commit a24ea01
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 9 deletions.
5 changes: 5 additions & 0 deletions fly.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@
transform: translateX(0);
}
}
.preview-image {
width: 100%;
aspect-ratio: 3/1;
object-fit: cover;
}

.btn {
padding: 10px 20px;
Expand Down
8 changes: 4 additions & 4 deletions fly.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ <h1 class="section__header">
<div style="display: flex; justify-content: center">
<img
src="img/Presentation1-removebg-preview.png"
style="width: 2000px; height: 500px"
class="preview-image"
alt="header"
/>
</div>
Expand Down Expand Up @@ -299,9 +299,9 @@ <h4>INFORMATION</h4>
</div>
<div class="footer__col">
<h4>CONTACT</h4>
<p>Support</p>
<p>Media</p>
<p>Socials</p>
<a href="contact.html">Support</a>
<a href="blog.html">Media</a>
<a href="#">Social</a>
</div>
</div>
<div class="section__container footer__bar">
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,7 @@ <h3>Wildlife Safari in Kenya</h3>
border: none;
padding: 10px 20px;
border-radius: 8px;
font-size: 1rem;
font-size: 1.5rem;
transition: background-color 0.3s ease, transform 0.3s ease, border 0.3s ease;
}

Expand Down
11 changes: 9 additions & 2 deletions romantic-gateway.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ body {
color: #333;
}

h1, h2 {
h1,
h2 {
color: #ff69b4;
}

Expand Down Expand Up @@ -41,9 +42,15 @@ h1, h2 {
height: 100%;
}

.card-img-top {
width: 100%;
aspect-ratio: 3/2;
object-fit: cover;
}

@media (max-width: 768px) {
.container {
padding-left: 15px;
padding-right: 15px;
}
}
}
2 changes: 1 addition & 1 deletion romantic-gateway.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ <h2 class="mb-3">🔍 Find Your Perfect Destination</h2>
<section id="map" class="mb-5">
<h2 class="mb-3">🗺️ Explore Romantic Destinations</h2>
<div class="ratio ratio-21x9">
<img src="https://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80" class="img-fluid rounded" alt="Interactive Map">
<img src="https://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80" class="card-img-top" alt="Interactive Map">
</div>
</section>

Expand Down
3 changes: 2 additions & 1 deletion solo-adventure.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ body {
}

.card-img-top {
height: 200px;
width: 100%;
aspect-ratio: 3/2;
object-fit: cover;
}

Expand Down
1 change: 1 addition & 0 deletions solo-adventure.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<title>Solo Adventure Explorer</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="solo-adventure.css">
</head>
<body>
<div class="container mt-5">
Expand Down

0 comments on commit a24ea01

Please sign in to comment.