-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.css
50 lines (42 loc) · 919 Bytes
/
table.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
.box-table {
display: none;
width: 100%;
padding: 4rem 4rem 0;
margin: 0 auto;
}
.box-table .box-info-order {
width: 100%;
margin: 0 auto;
overflow: hidden;
border: 1px solid #004AAD;
border-radius: 1.5rem;
padding: 1rem 0.7rem;
font-size: 1.1rem;
}
.box-table .box-info-order table {
width: 100%;
table-layout: fixed;
border-collapse: collapse;
}
.box-table .box-info-order table thead th {
text-align: left;
padding-bottom: 1rem;
}
.box-table .box-info-order table tbody td {
padding: 0.7rem 0;
}
.box-table .box-info-order table tbody tr {
border-top: 1px solid #004AAD;
}
.box-table .box-info-order table tbody tr:last-child {
border-bottom: 1px solid #004AAD;
}
.box-table .box-info-order table tfoot th {
padding-top: 1rem;
text-align: left;
}
@media(min-width: 660px) {
.box-table {
width: 60rem;
}
}