-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (55 loc) · 845 Bytes
/
style.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
body{
background: #fff;
}
.cart{
margin: 100px 0;
background-color: #F6F5FA;;
padding: 60px 0;
}
.total-price{
padding-bottom: 15px;
}
.cart-item{
background-color: #fff;
border-radius: 10px;
padding: 15px 20px;
margin-bottom: 20px;
}
.center-item{
display: flex;
align-items: center;
justify-content: flex-start;
}
.cart-item img{
width: 115px;
}
.cart-item h5{
padding: 0 45px;
}
.cart-item .remove-item{
width: 25px!important;
}
.btn-default{
background-color: #fff;
}
.cart-item .form-control{
background-color: #F6F5FA;
border: none;
width: 65px;
border-radius: 10px!important;
font-weight: 700;
font-size: 20px;
}
.input-group{
width: unset;
}
.status{
text-align: right;
}
.check-out{
float: right;
padding: 10px 30px;
font-size: 19px;
background-color: #2FBE70;
border: none;
}