Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple Minor Fixes And Enhancement In Websites #1601

Merged
merged 5 commits into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading