-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.css
78 lines (66 loc) · 1.22 KB
/
shop.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
.navbar {
background-color: #004085;;
}
.navbar-brand {
color: #fff;
font-size: 1.5rem;
font-weight: bold;
}
.navbar-nav .nav-link {
color: #fff;
font-size: 1.1rem;
}
.navbar-nav .nav-link:hover {
color: #f8f9fa;
}
.nav-icon {
font-size: 1.5rem;
margin-right: 5px;
}
.cart-icon {
position: relative;
}
.cart-badge {
position: absolute;
top: -5px;
right: -10px;
background-color: red;
color: white;
padding: 2px 5px;
border-radius: 50%;
font-size: 0.8rem;
}
.card {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
}
.card-img-top {
height: 150px;
object-fit: cover;
}
.btn {
background-color: #007bff;
font-family: "Helvetica", sans-serif;
color: white;
font-size: 20px;
border-radius: 0.375rem;
}
.btn_container .btn {
background: #007bff;
text-transform: uppercase;
font-size: 20px;
color: white;
border-radius: 0.375rem;
padding: 12px 10px;
border: none;
transition: all 0.3s ease-in-out;
margin: auto;
}
.btn_container .btn:hover {
background: #0056b3;
color: #fff;
border-radius: 0.375rem;
}