-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct-list.css
More file actions
42 lines (36 loc) · 794 Bytes
/
product-list.css
File metadata and controls
42 lines (36 loc) · 794 Bytes
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
.card{
transition: transform 0.2s ease-in-out;
}
.card:hover{
transform: translateY(-5px);
box-shadow: 0px 3px 10px rgb(244, 116, 88, 0.3);
cursor: pointer;
}
.card-title h4{
text-decoration: underline;
text-underline-offset: 20px;
text-decoration-thickness: 3px;
text-decoration-color: #f47458;
line-height: 50px;
}
.card-title span{
color: #f47458;
}
.carousel-inner{
box-shadow: 0px 4px 20px rgb(244, 116, 88, 0.3);
}
.top:hover{
cursor: pointer;
border: 2px solid #f47458;
box-shadow: 0px 2px 15px rgb(244, 116, 88, 0.3);
}
@media screen and (max-width: 600px){
.carousel, .carousel-item{
height: 110px;
}
.carousel-item img{
width: 100%;
height: 100%;
object-fit: cover;
}
}