-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcart.css
130 lines (126 loc) · 2.45 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
129
130
* {
margin: 0%;
padding: 0%;
font-family: Roboto, sans-serif;
font: Roboto, 100% (remote);
}
#cart > div > img {
width: 100px;
height: 100px;
margin-right: 30%;
margin-left: 1%;
}
#cart > div {
display: flex;
color: RGB(68, 68, 68);
margin-top: 19px;
}
#cart > div > div > h3 > span {
margin-left: 500px;
color: RGB(68, 68, 68);
}
#cart > div > div > div {
border-radius: 10px;
color: RGB(68, 68, 68);
border: 1px solid grey;
width: 150px;
display: flex;
padding: 0px 30px 0px 0px;
margin-top: 10px;
justify-content: center;
}
#cart > div > div > div > span {
margin-left: 19px;
font-size: 30px;
cursor: pointer;
padding: 10px;
}
#header {
overflow: hidden;
width: 100%;
display: flex;
height: 100px;
border: 1px solid grey;
}
#header > img {
width: 50px;
height: 50px;
margin: 19px 0px 0px 30px;
padding-top: -5px;
}
#header > p {
font-size: 30px;
text-align: center;
padding-top: 30px;
}
#check {
margin-top: 5%;
margin-left: 3%;
width: 30%;
}
#check > span {
margin-left: 10px;
color: RGB(68, 68, 68);
}
#check + p {
margin-top: 3%;
margin-left: 3%;
}
#check + p + input {
margin-left: 3%;
margin-top: 1%;
border-radius: 30px;
width: 30%;
padding-left: 5px;
height: 100px;
border: 1px solid grey;
}
#checkout_btn {
width: 100%;
height: 300px;
border: 1px solid grey;
margin-top: 3%;
}
#checkout_btn > p {
margin-top: 5%;
margin-left: 3%;
}
#checkout_btn > button {
margin-top: 3%;
padding: 19px 199px;
color: white;
border-radius: 30px;
margin-left: 3%;
background-color: blue;
cursor: pointer;
margin-bottom: 3%;
font-size: 19px;
border: none;
}
#checkout_btn > a {
margin-left: 3%;
margin-top: 10px;
text-decoration: none;
color: RGB(68, 68, 68);
}
#empty_div {
height: 600px;
}
#empty_p {
height: 100px;
width: 100%;
padding-left: 30px;
margin-top: 30px;
}
#empty_btn {
margin-right: 30%;
margin-top: 19%;
padding: 10px 199px;
height: 60px;
background-color: blue;
border-radius: 19px;
color: white;
border: none;
font-size: 19px;
cursor: pointer;
}