-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.css
69 lines (69 loc) · 1.21 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
*{
margin: 0px;
padding: 0px;
}
#nav1 {
width: 100%;
height: 120px;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
#nav1 > div {
width: 20%;
padding: 10px;
}
#nav1 > div > a > img {
width: 150px;
padding: 30px;
}
#container_hiru {
width: 90%;
display: grid;
margin: auto;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: auto;
}
#container_hiru > div {
height: auto;
padding: 10px;
color: #1f6699;
text-decoration: none;
}
#container_hiru > div > img {
width: 200px;
}
#tatal_price {
width: 90%;
margin: auto;
padding: 10px;
color: #1f6699;
margin-top: 20px;
margin-bottom: 10px;
display: flex;
justify-content:space-between ;
}
button {
color: white;
border-radius: 4px;
padding: 12px 14px;
background-color: #035d59;
border: 0px;
width: 80px;
}
#container_hiru > div:hover {
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
#para {
width: 40%;
text-align: center;
margin: auto;
padding: 10px;
margin-top: 10px;
color: #676767;
}
#tatal_price > button > a {
text-decoration: none;
color: aliceblue;
}
#tatal_price > button {
background-color: #235780;
}