-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCostTable.css
89 lines (83 loc) · 1.99 KB
/
CostTable.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
77
78
79
80
81
82
83
84
85
86
87
88
89
.table {
width: 100%;
border: 1px solid #ddd;
border-radius: 0.125rem;
margin-bottom: 1rem;
}
.table .table-title {
display: flex;
width: 100%;
padding: 1rem;
font-weight: 500;
font-size: 1.25rem;
line-height: 1.5rem;
}
.table-content {
-webkit-box-flex: 1;
-ms-flex: auto 1;
flex: auto 1;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: stretch;
-ms-flex-align: stretch;
align-items: stretch;
width: 100%;
border-collapse: collapse;
overflow: auto;
}
.table-header {
box-shadow: none;
border-bottom: 1px solid #ededed;
-webkit-box-flex: 1;
-ms-flex: 1 0 auto;
flex: 1 0 auto;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.table-body,
.table-header,
.table-footer {
-webkit-box-flex: 99999;
-ms-flex: 99999 1 auto;
flex: 99999 1 auto;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
overflow: auto;
}
.table-row {
-webkit-box-flex: 1;
-ms-flex: 1 0 auto;
flex: 1 0 auto;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
}
.table-data {
padding: 0.75rem 1rem;
flex: 1 0 auto;
background-color:teal;
}
.table-title {
background-color: white;
font-weight: bolder;
font-family: 'Times New Roman', Times, serif;
}