-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
88 lines (72 loc) · 1.25 KB
/
stylesheet.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
html, body {
width: 400px;
background-color:#000;
color:#fff;
overflow-x:hidden;
}
.main {
width:100%;
}
.fade {
background: linear-gradient(90deg, rgba(2,0,36,0) 90%, rgba(0,0,0,1) 100%);
pointer-events:none;
width:100%;
height:100%;
position:absolute;
top:0;
left:0;
z-index:1000;
}
h3 {
font-size:12px;
margin-left:10px;
}
.tab-list {
border:1px solid #000;
width:100%;
border-collapse: collapse;
}
.tab-list tr {
border-bottom:1px solid rgba(255,255,255,0.5);
cursor:pointer;
}
.tab-list tr:last-child {
border-bottom:none;
}
.tab-list .highlighted {
background-color:rgba(255,255,255,0.3);
}
.tab-list td {
white-space: nowrap;
text-overflow:ellipsis;
}
.tab-list tr:hover {
background-color:rgba(255,255,255,0.2);
}
input.tab-search {
display:none;
}
.search {
display:flex;
opacity:0;
}
.search_query::before {
content: "\A0";
}
.search_query {
display:inline-block;
background-color:#fff;
border-radius:2px;
margin-right:4px;
color:#000;
width:200px;
}
td:nth-child(1) {
font-weight:900;
font-family:'Courier New', Courier, monospace;
width:20px;
text-align:center;
}
td:nth-child(2) {
width:16px;
}