-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.css
61 lines (60 loc) · 959 Bytes
/
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
justify-content: center;
}
.page-cart{
padding: 25px;
width: 100%;
height:auto;
display: flex;
justify-content: space-evenly;
}
h2{
text-align: center;
margin-bottom: 25px;
}
.search{
text-align: center;
margin-bottom: 25px;
}
table,#your_cart{
width: 100%;
border-collapse: collapse;
}
th,td{
border: 1px solid black;
padding: 6px;
text-align: center;
}
caption{
font-size: 30px;
margin-bottom: 15px;
}
.Infor-customer{
margin-top: 85px;
}
form{
display: flex;
flex-direction: column;
background-color:cadetblue;
padding: 20px;
border-radius: 5px;
border: 1px solid gray;
margin:20px 0 30px 0;
width: 500px;
}
form>input{
margin-top: 20px;
width: 100%;
height: 30px;
padding: 10px;
}
.order>button{
font-size: 20px;
padding: 7px 10px;
}