-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
76 lines (73 loc) · 1.1 KB
/
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
body{
height: 100vh;
display: flex;
background: #fff;
align-items: center;
justify-content: center;
}
.cart{
margin: 100px 0;
background-color: #F6F5FA;;
padding: 60px 0;
min-width: 1200px;
}
.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;
}
.btn:hover i {
color: #2FBE70;
}
.form-control:focus,
.btn:focus {
outline: 0;
box-shadow: none;
}
#checkOut {
display: none;
color: #2FBE70;
text-align: center;
}