forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravel.css
54 lines (43 loc) · 827 Bytes
/
travel.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
body {
background-color: #f8f9fa;
}
.space {
height: 100px;
}
.destination-card {
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
cursor: pointer;
}
.destination-card:hover, .destination-card:focus {
transform: translateY(-5px);
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.card-img-top {
height: 200px;
object-fit: cover;
}
.modal-content {
border-radius: 15px;
}
.modal-header {
background-color: #f8f9fa;
border-bottom: none;
}
.modal-body img {
border-radius: 10px;
}
.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;
}
@media (max-width: 768px) {
.row-cols-md-2 > * {
flex: 0 0 100%;
max-width: 100%;
}
}