forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gear.css
49 lines (39 loc) · 766 Bytes
/
gear.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
body {
background-color: #f8f9fa;
}
.trip-card {
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
cursor: pointer;
}
.trip-card:hover, .trip-card:focus {
transform: translateY(-5px);
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.trip-card:focus {
outline: 2px solid #007bff;
}
.card-img-top {
height: 200px;
object-fit: cover;
}
#gearSection {
opacity: 0;
transition: opacity 0.5s ease-in-out;
}
#gearSection.d-none {
display: none !important;
}
#gearSection:not(.d-none) {
opacity: 1;
}
.btn-primary {
transition: background-color 0.3s ease-in-out;
}
.btn-primary:hover {
background-color: #0056b3;
}
@media (max-width: 768px) {
.col-md-4 {
margin-bottom: 20px;
}
}