order-list.scss
1.22 KB
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
.service-chat {
#order-list-wrap {
display: none;
background: #f0f0f0;
}
.order-page {
.send-order {
border-top: 1px solid #e0e0e0;
padding: 30px;
}
.send-order-btn {
float: right;
height: 60px;
width: 145px;
line-height: 60px;
padding: 0;
text-align: center;
font-size: 28px;
color: #fff;
background: #d0021b;
border-radius: 5PX;
}
}
.no-orders {
margin-top: 100px;
text-align: center;
img {
width: 153px;
height: 196px;
}
p {
font-size: 24px;
margin-top: 24px;
margin-bottom: 60px;
}
a {
display: inline-block;
height: 80px;
line-height: 80px;
width: 70%;
color: #fff;
background-color: #444;
border-radius: 5PX;
}
}
.no-orders-pic {
display: inline-block;
width: 153px;
height: 196px;
background: url("img/home/no-order.png") no-repeat;
background-size: 100%;
}
}