#
whycq
2022-09-06 4ba070a0f35fbf7aa55057271a2c83f613d5ad12
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
* {
    padding: 0;
    margin: 0;
    overflow: hidden;
}
body {
    height: 100%;
    position: absolute;
}
#container {
    padding: 10px 10px;
    position: absolute;
    height: 92%;
    background-color: #2E4E7E;
    overflow: auto;
}
.table {
    width: 210%;
}
.table, th, td {
    border: 1px solid #fff;
    text-align: center;
    color: #D9D9D9;
}
#tab-header tr>th{
    background-color: #3A4A5A;
    width: 150px;
    height: 60px;
}
#tab-body tr>td{
    height: 40px;
}
.projectName {
    background-color: #3A4A5A;
    
}