forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
goa-resort.css
114 lines (97 loc) · 1.83 KB
/
goa-resort.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/* Body Styling */
body {
background-color: #f0f8ff;
color: #333;
}
/* Heading and Quote Styling */
h1.display-3 {
font-family: 'Arial', sans-serif;
color: #ff6347; /* Warm color like the sun */
font-weight: 700;
text-transform: uppercase;
}
p.lead {
font-family: 'Georgia', serif;
color: #333;
font-size: 3rem;
font-style: italic;
}
/* Color Changing Text */
.color-changing-text {
animation: color-change 5s linear infinite;
}
/* Color Changing Animation */
@keyframes color-change {
0% {
color: #ff6347; /* Tomato */
}
25% {
color: #ff4500; /* Orange Red */
}
50% {
color: #1e90ff; /* Dodger Blue */
}
75% {
color: #32cd32; /* Lime Green */
}
100% {
color: #ff6347; /* Back to Tomato */
}
}
/* Carousel Styling */
.carousel-item {
height: 500px;
background-color: #000;
}
.carousel-item img {
height: 500px;
object-fit: cover;
}
.carousel-caption h5 {
font-size: 2rem;
font-weight: bold;
}
.carousel-caption p {
font-size: 1.2rem;
}
/* Resort Card Styling */
.resort-card {
transition: transform 0.3s ease-in-out;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.resort-card:hover {
transform: translateY(-5px);
}
.card-img-top {
height: 200px;
object-fit: cover;
}
/* Button Styling */
.btn-primary {
background-color: #4a90e2;
border-color: #4a90e2;
}
.btn-primary:hover {
background-color: #3a7bc8;
border-color: #3a7bc8;
}
/* Star Rating Color */
.text-warning {
color: #ffc107 !important;
}
/* Icon Sizing */
.bi {
font-size: 1.2rem;
}
/* Media Query for Smaller Screens */
@media (max-width: 768px) {
.card-img-top {
height: 150px;
}
.carousel-item {
height: 300px;
}
.carousel-item img {
height: 300px;
}
}