forked from nikhildeora/cool-monk-ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.css
128 lines (114 loc) · 2.12 KB
/
cart.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
*{
margin: 0px;
padding: 0px;
}
#container{
width: 95%;
margin: auto;
display: grid;
grid-template-columns: repeat(4,1fr);
gap: 20px;
}
#container>div{
text-align: center;
padding: 10px;
}
#total_price{
text-align: center;
margin-top: 12px;
margin-bottom: 12px;
}
#checkout_btn{
background-color: #545871;
color: white;
margin-left: 37px;
border: none;
padding: 12px;
border-radius: 18px;
font-size: 16px;
margin-top: 20px;
}
#checkout_btn>a{
color: white;
text-decoration: none;
}
/* #container>div img{
width: 100%;
} */
/* button{
padding: 7px;
background-color: #545871;
color: white;
} */
#buttons{
/* width: 70%; */
margin: auto;
display: flex;
justify-content: space-between;
/* padding: 10px; */
}
@media all and (min-width:320px) and (max-width:1000px){
#container{
width: 100%;
display: grid;
grid-template-columns: repeat(2,1fr);
gap: 25px;
}
/* .remove_btn {
margin-left: 0px;
}
.show_detail {
margin-right: 0px;
} */
}
#checkout_btn:hover{
cursor: pointer;
background-color: #414467;
}
.cat_cards>img {
width: 70%;
}
.cat_cards {
box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
text-align: center;
padding: 8px;
/* display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center; */
}
.remove_btn {
background-color: #414467;
color: white;
margin-left: 10%;
margin-top: 12px;
padding: 12px;
border-radius: 20px;
font-size: 17px;
}
.remove_btn:hover{
color: #414467;
background-color: white;
}
.show_detail {
background-color: white;
margin-right: 10%;
margin-bottom: 12px;
padding: 12px;
border-radius: 20px;
font-size: 17px;
}
.show_detail:hover{
background-color: #414467;
color: white;
}
.cat_cards>h2 {
font-weight: normal;
}
.cat_cards>div>i {
color: gold;
}
.cat_cards>.cat_price {
font-size: 23px;
font-weight: bold;
}