-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcartpages.css
61 lines (59 loc) · 1.08 KB
/
cartpages.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
*{
font-family: "system-ui", sans-serif;
color: #333340;
}
#cartmain{
display: grid;
grid-template-columns: repeat(2, 1fr);
padding: 20px;
}
#cartmain>div{
height: 300px;
width: 500px;
text-align: center;
}
#cartmain>div:nth-child(2){
width: 800px;
text-align: left;
}
#cartmain>div>img{
height: 350px;
width: 350px;
}
#innerdiv{
display: grid;
grid-template-columns: repeat(2, 1fr);
padding: 20px;
}
#innerdiv>div{
border: 1px solid gray;
height: auto;
width: 400px;
text-align: left;
padding: 10px;
line-height: 30px;
border-bottom: 0px;
border-left: 0em;
}
#innerdiv>div>button{
border: none;
width: 160px;
height: 40px;
font-weight: bold;
border-radius: 5px;
font-size: 15px;
background-color: #E42529;
color: white;
}
#innerdiv>div>input{
width: 200px;
height: 40px;
border-radius: 5px;
}
.thr{
text-decoration: line-through;
}
#innerdiv>div>button:hover{
cursor: pointer;
background-color: blue;
}