forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
solo-adventure.css
53 lines (44 loc) · 836 Bytes
/
solo-adventure.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
body {
background-color: #f8f9fa;
}
.itinerary-card {
transition: transform 0.3s ease-in-out;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.itinerary-card:hover {
transform: translateY(-5px);
}
.card-img-top {
width: 100%;
aspect-ratio: 3/2;
object-fit: cover;
}
.btn-primary {
background-color: #007bff;
border-color: #007bff;
}
.btn-primary:hover {
background-color: #0056b3;
border-color: #0056b3;
}
@media (max-width: 768px) {
.col-md-4 {
margin-bottom: 20px;
}
}
#searchInput:focus,
#filterSelect:focus,
#sortSelect:focus {
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
border-color: #80bdff;
}
.form-control,
.form-select {
margin-bottom: 10px;
}
@media (min-width: 768px) {
.form-control,
.form-select {
margin-bottom: 0;
}
}