-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
default.css
65 lines (56 loc) · 1.05 KB
/
default.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
body{
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
color: #646464;
background-color: #fff;
}
div{
display: block;
}
table{
/*margin-top: 4px;*/
width: 100%;
}
th{
border-left: 1px solid #EBEBED;
border-bottom: 1px solid #EBEBED;
border-top: 1px solid #EBEBED;
color: #3E3E49;
background: #F6F6F6;
height: 2em;
vertical-align: middle;
text-align: left;
padding: 0 4px 0 4px;
font-weight: 500;
font-size:13px;
}
thead>tr{
border-right: 1px solid rgb(235, 235, 237);
}
tr{
border-bottom: 1px dotted #EBEBED;
border-left: 1px dotted #EBEBED;
}
td {
padding: 0 4px 0 4px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
color: #000000;
border-right: 1px dotted #EBEBED;
/*vertical-align: top;*/
height: 20px;
font-size: 0.9em;
min-width: 160px;
}
td.method{
max-width: 160px;
width: 160px;
}
th.method{
max-width: 160px;
width: 160px;
}
tbody>tr:hover{
background-color: #F2F6F9;
}