Skip to content
Draft
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
355 changes: 355 additions & 0 deletions github-copilot-features/agent/travel-website/about.html

Large diffs are not rendered by default.

327 changes: 327 additions & 0 deletions github-copilot-features/agent/travel-website/booking.html

Large diffs are not rendered by default.

206 changes: 206 additions & 0 deletions github-copilot-features/agent/travel-website/css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,206 @@
/* TravelDream - Custom Styles */

/* Smooth scrolling */
html {
scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-track {
background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
background: #3b82f6;
border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
background: #2563eb;
}

/* Animation for cards */
.transform {
transition: transform 0.3s ease-in-out;
}

/* Button hover effects */
button:hover,
a:hover {
transition: all 0.3s ease;
}

/* Input focus styles */
input:focus,
select:focus,
textarea:focus {
border-color: #3b82f6;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Card shadow on hover */
.shadow-lg:hover {
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Hero section text shadow */
.text-shadow {
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Loading animation */
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}

.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Gradient text */
.gradient-text {
background: linear-gradient(135deg, #3b82f6, #8b5cf6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

/* Backdrop blur for modern browsers */
.backdrop-blur {
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}

/* Custom transitions */
.transition-all {
transition: all 0.3s ease-in-out;
}

/* Image hover zoom effect */
.img-zoom {
overflow: hidden;
}

.img-zoom img {
transition: transform 0.5s ease;
}

.img-zoom:hover img {
transform: scale(1.1);
}

/* Sticky navigation */
.sticky-nav {
position: sticky;
top: 0;
z-index: 50;
}

/* Form validation styles */
input:invalid:not(:placeholder-shown),
select:invalid:not(:placeholder-shown) {
border-color: #ef4444;
}

input:valid:not(:placeholder-shown) {
border-color: #22c55e;
}

/* Mobile menu animation */
.mobile-menu-enter {
animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* Price tag styles */
.price-tag {
position: relative;
}

.price-tag::before {
content: '';
position: absolute;
top: 50%;
left: -10px;
transform: translateY(-50%);
width: 0;
height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right: 10px solid currentColor;
}

/* Rating stars animation */
.star-rating i {
transition: transform 0.2s ease;
}

.star-rating:hover i {
transform: scale(1.2);
}

/* Newsletter input glow */
.newsletter-input:focus {
box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Footer link hover */
.footer-link {
position: relative;
}

.footer-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: #fff;
transition: width 0.3s ease;
}

.footer-link:hover::after {
width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.hero-title {
font-size: 2.5rem;
}

.section-padding {
padding: 3rem 1rem;
}
}

/* Print styles */
@media print {
.no-print {
display: none !important;
}

.print-only {
display: block !important;
}
}
Loading
Loading