-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvegitable.css
97 lines (84 loc) · 1.59 KB
/
vegitable.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
* {
padding: 0px;
margin: 0px;
box-sizing: border-box;
}
#main {
width: 70%;
margin: auto;
margin-top: 30px;
}
.container {
width: 100%;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(1, auto);
gap: 10px;
}
/* ----------------------js script css-------------------- */
.maindiv {
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
padding: 15px 7px;
}
.offer {
display: flex;
justify-content: flex-end;
padding-right: 15px;
color: red;
font-size: 14px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.mainimg {
width: 100%;
margin: auto;
}
.pricediv {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.del_div {
display: flex;
font-size: 13px;
justify-content: space-between;
margin: auto;
margin-bottom: 10px;
}
.select {
width: 100%;
outline: none;
margin: 20px 0px 10px;
}
.cartbtn {
width: 35%;
display: flex;
margin-left: 3px;
padding: 0px 5px;
justify-content: space-around;
align-items: center;
background-color: #fde37c;
border-radius: 5px;
cursor: pointer;
}
#last {
display: flex;
margin-left: 5px;
width: 100%;
height: 30px;
}
.Qty {
width: 20%;
color: white;
background-color: gray;
padding: 0px 5px;
border-radius: 5px 0px 0px 5px;
display: flex;
align-items: center;
}
.quantity {
width: 20%;
border-radius: 0px 5px 5px 0px;
border: none;
outline: none;
border: 1px solid gray;
}