tablecss.scss
542 Bytes
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
.tableDivCss {
width: 100%;
height: 95%;
background-color: #f5f5f5;
padding: 5px;
overflow-y: scroll;
box-sizing: border-box;
}
.tableCss {
width: 100%;
background: #fff;
text-align: center;
border-collapse: collapse;
color: #333;
th {
border: 1px solid #e8e8e8;
line-height: 42px;
padding: 0 4px;
font-size: 14px;
}
td {
border: 1px solid #e8e8e8;
line-height: 42px;
padding: 0 4px;
font-size: 14px;
}
.title {
line-height: 68px;
font-size: 22px !important;
}
}