-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (62 loc) · 1.09 KB
/
style.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
*{
font-family: 'Poppins', sans-serif;
}
.container{
margin-bottom: 70px;
}
.bg-pink{
border-radius: 10px;
background-color: #FEEAE9;
}
.bg-pink p{
color: gray;
}
.carousel-item{
padding: 20px 40px;
}
.buy-now-button{
padding: 10px 20px;
color: #ffffff;
background-image: linear-gradient(180deg, #ff589b, #ff136f);
border: none;
border-radius: 10px;
cursor: pointer;
}
.buy-now-button:hover{
background-image: linear-gradient(180deg, #ff0062, #ff0062);
box-shadow: 2px 2px 5px gray;
}
.price{
color: #FF136F;
}
.categories a{
text-decoration: none;
color: #ffffff;
}
.categories img{
width: 100px;
}
.cat1, .cat2, .cat3{
padding: 10px 20px;
border-radius: 10px;
}
.cat1{
background-image: linear-gradient(90deg, tomato, orange);
}
.cat2{
background-image: linear-gradient(90deg, blue, cyan);
}
.cat3{
background-image: linear-gradient(90deg, hotpink, pink);
}
.card{
border: none;
border-radius: 10px;
box-shadow: 5px 5px 10px lightgray;
}
.card-footer{
border: none;
}
.subscribe{
height: 300px;
}