-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
148 lines (148 loc) · 2.35 KB
/
style.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
html, body, ul {
margin: 0;
padding: 0;
}
body {
font-family: sans-serif;
}
button, label, input[type="checkbox"], input[type="radio"] {
cursor: pointer;
}
header h1 {
margin: 20px 20px 10px;
}
header h1 a {
color: #09f;
text-decoration: none;
}
header h1 a:hover {
text-decoration: underline;
}
header ul {
margin: 10px 0 20px 40px;
}
header ul ul {
margin: 0 0 0 40px;
}
header ul.updates {
font-size: 14px;
}
#tableWrapper {
display: inline-block;
padding: 0 20px 20px;
vertical-align: top;
}
.controlWrapper {
margin-bottom: 10px;
}
.controlWrapper .pagerBlock input[type="text"] {
width: 4em;
}
#table {
border-spacing: 0;
border-collapse: separate;
border-width: 1px 0 0 1px;
border-style: solid;
border-color: #333;
background: #fff;
font-size: 14px;
word-break: break-all;
}
#table th, #table td {
box-sizing: border-box;
padding: 2px 4px;
border-width: 0 1px 1px 0;
border-style: solid;
border-color: #333;
}
#table thead {
position: sticky;
top: 0;
background: #fff;
text-align: center;
}
#table input[type="text"] {
width: 16em;
}
#table input[type="checkbox"],
#table input[type="radio"] {
margin: 0 0 0 4px;
padding: 0;
}
#filters .block {
display: inline-block;
margin: 8px 0;
text-align: right;
}
#filters .block label {
display: block;
}
#filters .group {
display: inline-block;
text-align: right;
}
#filters .group label {
display: block;
margin: 0 4px;
}
#filters label input[type="text"] {
margin-left: 8px;
}
#labels {
background: #fcc;
white-space: nowrap;
}
#table {
counter-reset: count;
table-layout: fixed;
width: 4630px;
}
#table p {
margin: 4px;
}
#table tbody tr {
counter-increment: count;
}
#table tbody .count, #table thead #filters .count {
background: #fffff0;
}
#table tbody .count::before {
content: counter(count);
}
#table .num,
#table .size,
#table .date {
text-align: center;
white-space: nowrap;
}
#table .query {
text-align: center;
}
#table .file {
text-align: center;
}
#table .ja-nth {
width: 90px;
}
#table .en-nth,
#table .en-size {
width: 120px;
}
#table td.en-meta {
white-space: pre-wrap;
}
#table .en-meta,
#table .en-title,
#table .en-url,
#table .en-query,
#table .en-examples,
#table .ja-title,
#table .ja-url,
#table .ja-query,
#table .ja-examples,
#table .ja-samples {
width: 400px;
}
#table .ja-updated {
width: 120px;
}