forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rajasthan.css
76 lines (62 loc) · 1.22 KB
/
rajasthan.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
body {
background-color: #f8f9fa;
}
.tour-card {
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.tour-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.tour-card img {
height: 200px;
object-fit: cover;
}
.card-title {
color: #007bff;
}
.btn-primary {
background-color: #007bff;
border-color: #007bff;
transition: background-color 0.3s ease-in-out;
}
.btn-primary:hover {
background-color: #0056b3;
border-color: #0056b3;
}
.modal-content {
border-radius: 15px;
}
.modal-header {
background-color: #007bff;
color: white;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
}
.modal-body {
padding: 2rem;
}
@media (max-width: 768px) {
.tour-card {
margin-bottom: 20px;
}
}
.form-select:focus {
border-color: #007bff;
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
#noResults {
text-align: center;
padding: 20px;
font-size: 18px;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.tour-card {
animation: fadeIn 0.5s ease-in-out;
}