-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathorders.css
71 lines (58 loc) · 952 Bytes
/
orders.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
@charset "utf-8";
* {
font-family: Verdana, Geneva, sans-serif;
font-size: 14px;
}
body {
background: #f7f7f7;
width: 90%;
margin: 0px auto;
}
table {
border: 1px solid #000;
border-collapse: collapse;
width: 100%;
}
td, th {
padding: 2px 5px;
border: 1px solid #999;
}
th {
background: #ccc;
}
table.orders td:nth-child(1), table.calls td:nth-child(1) {
width: 25px;
text-align: center;
}
table.orders td:nth-child(2) {
width: 200px;
text-align: center;
}
table.orders td:nth-child(3) {
text-align: left;
}
table.orders td:nth-child(4) {
width: 200px;
text-align: right;
}
table.orders td:nth-child(5) {
width: 100px;
text-align: right;
}
table.orders td:nth-child(6) {
width: 170px;
text-align: center;
}
tr:nth-child(2n) {
background: #e7e7e7;
}
table.calls td:nth-child(2) {
width: 300px;
}
table.calls td:nth-child(3) {
width: 200px;
}
table.orders td:nth-child(6) {
width: 150px;
text-align: center;
}