1
|
body {
|
2
|
font-family: Arial, Helvetica, sans-serif;
|
3
|
color: #333333;
|
4
|
margin: 0;
|
5
|
}
|
6
|
|
7
|
#upload_file {
|
8
|
height: 200px;
|
9
|
width: 500px;
|
10
|
margin: 20px 0px 0px 20px;
|
11
|
border: 1px;
|
12
|
display: inline-block;
|
13
|
}
|
14
|
|
15
|
.btn {
|
16
|
display: inline-block;
|
17
|
padding: 4px 12px;
|
18
|
margin-bottom: 0;
|
19
|
font-size: 14px;
|
20
|
line-height: 20px;
|
21
|
color: #333333;
|
22
|
text-align: center;
|
23
|
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
24
|
vertical-align: middle;
|
25
|
cursor: pointer;
|
26
|
background-color: #f5f5f5;
|
27
|
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
|
28
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
|
29
|
background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
|
30
|
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
|
31
|
background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
|
32
|
background-repeat: repeat-x;
|
33
|
border: 1px solid #cccccc;
|
34
|
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
|
35
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
36
|
border-bottom-color: #b3b3b3;
|
37
|
-webkit-border-radius: 4px;
|
38
|
-moz-border-radius: 4px;
|
39
|
border-radius: 4px;
|
40
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
|
41
|
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
42
|
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
43
|
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
44
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
45
|
}
|
46
|
|
47
|
.btn:hover {
|
48
|
color: #333333;
|
49
|
background-color: #e6e6e6;
|
50
|
text-decoration: none;
|
51
|
background-position: 0 -15px;
|
52
|
-webkit-transition: background-position 0.1s linear;
|
53
|
-moz-transition: background-position 0.1s linear;
|
54
|
-o-transition: background-position 0.1s linear;
|
55
|
transition: background-position 0.1s linear;
|
56
|
}
|
57
|
.btn:active {
|
58
|
background-image: none;
|
59
|
outline: 0;
|
60
|
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
61
|
-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
62
|
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
63
|
}
|
64
|
|
65
|
.btn:focus, .btn:hover {
|
66
|
outline: 0;
|
67
|
}
|
68
|
|
69
|
.textarea, input[type="text"] {
|
70
|
background-color: #ffffff;
|
71
|
border: 1px solid #cccccc;
|
72
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
73
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
74
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
75
|
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
76
|
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
|
77
|
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
78
|
transition: border linear 0.2s, box-shadow linear 0.2s;
|
79
|
padding: 4px 6px;
|
80
|
margin-bottom: 10px;
|
81
|
font-size: 14px;
|
82
|
line-height: 20px;
|
83
|
color: #555555;
|
84
|
vertical-align: middle;
|
85
|
-webkit-border-radius: 4px;
|
86
|
-moz-border-radius: 4px;
|
87
|
border-radius: 4px;
|
88
|
}
|
89
|
|
90
|
.textarea {
|
91
|
width: 98%;
|
92
|
max-width: 98%;
|
93
|
}
|
94
|
|
95
|
input[type="text"] {
|
96
|
width: 400px;
|
97
|
}
|
98
|
|
99
|
.textarea:focus, input[type="text"]:focus {
|
100
|
border-color: rgba(82, 168, 236, 0.8);
|
101
|
outline: 0;
|
102
|
outline: thin dotted \9;
|
103
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
104
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
105
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
106
|
}
|
107
|
|
108
|
|
109
|
#sidebar {
|
110
|
width: 18%;
|
111
|
float: left;
|
112
|
padding: 0;
|
113
|
margin: 0;
|
114
|
}
|
115
|
|
116
|
#sidebar h3 {
|
117
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
118
|
font-size: 0.9em;
|
119
|
color: #333;
|
120
|
border-bottom: 3px solid #5882FA;
|
121
|
}
|
122
|
|
123
|
div#sidebar p {
|
124
|
margin-left: 10px;
|
125
|
margin-right: 5px;
|
126
|
}
|
127
|
p {
|
128
|
margin-left: 20px;
|
129
|
font-size: 0.8em;
|
130
|
}
|
131
|
|
132
|
a {
|
133
|
color: #0088cc;
|
134
|
text-decoration: none;
|
135
|
}
|
136
|
|
137
|
.blue {
|
138
|
color: #0088cc;
|
139
|
}
|
140
|
|
141
|
a.no_link {
|
142
|
color: #333333;
|
143
|
}
|
144
|
|
145
|
div#sidebar ul {
|
146
|
padding-left: 15px;
|
147
|
margin-left: 15px;
|
148
|
margin-right: 5px;
|
149
|
}
|
150
|
div#sidebar ul {
|
151
|
list-style-type: square;
|
152
|
padding-left: 30px;
|
153
|
margin-left: 30px;
|
154
|
font-size: 0.8em;
|
155
|
}
|
156
|
|
157
|
div#page {
|
158
|
width: 80%;
|
159
|
float: left;
|
160
|
border-left: 1px solid #999;
|
161
|
padding-left: 10px;
|
162
|
padding-right: 0px;
|
163
|
padding-bottom: 0px;
|
164
|
overflow: hidden;
|
165
|
min-height: 500px;
|
166
|
}
|
167
|
|
168
|
div#result_menu ul li {
|
169
|
float: left;
|
170
|
display: inline;
|
171
|
width: 100px;
|
172
|
}
|
173
|
|
174
|
.align-left {
|
175
|
text-align: left;
|
176
|
}
|
177
|
|
178
|
div#result_menu ul li a{
|
179
|
border: 1px;
|
180
|
border: 1px solid #999;
|
181
|
background: white;
|
182
|
padding: 5px 15px 3px 15px;
|
183
|
font-size: 0.85em;
|
184
|
|
185
|
-webkit-border-radius: 4px 4px 0px 0px;
|
186
|
-moz-border-radius: 4px 4px 0px 0px;
|
187
|
border-radius: 4px 4px 0px 0px;
|
188
|
|
189
|
-moz-box-shadow: inset 0px 1px 6px 0px #eeeeee;
|
190
|
-webkit-box-shadow: inset 1px 0px 6px 0px #eeeeee;
|
191
|
box-shadow: inset 0px 1px 6px 0px #eeeeee;
|
192
|
}
|
193
|
|
194
|
div#result_menu ul li a.active {
|
195
|
-moz-box-shadow: inset 0px 1px 6px 0px rgba(82, 168, 236, 0.8);
|
196
|
-webkit-box-shadow: inset 1px 0px 6px 0px rgba(82, 168, 236, 0.8);
|
197
|
box-shadow: inset 0px 1px 6px 0px rgba(82, 168, 236, 0.8);
|
198
|
border-bottom-color: #C7CDFC;
|
199
|
}
|
200
|
|
201
|
div#result_menu ul li a:hover {
|
202
|
cursor: pointer;
|
203
|
}
|
204
|
|
205
|
div#result_menu {
|
206
|
border-bottom: 1px solid #999;
|
207
|
height: 20px;
|
208
|
}
|
209
|
|
210
|
div#result {
|
211
|
margin-top: 10px;
|
212
|
}
|
213
|
|
214
|
#result_section {
|
215
|
padding:15px;
|
216
|
display: block;
|
217
|
font-size: 0.9em;
|
218
|
line-height: 20px;
|
219
|
}
|
220
|
|
221
|
.key {
|
222
|
font-weight: bold;
|
223
|
}
|
224
|
|
225
|
#examples h4 {
|
226
|
margin: 10px 0 10px 0;
|
227
|
}
|
228
|
|
229
|
.examples_right {
|
230
|
display: inline;
|
231
|
float: right;
|
232
|
}
|
233
|
|
234
|
.buttons {
|
235
|
width: 99.3%;
|
236
|
}
|
237
|
|
238
|
#submit, .example{
|
239
|
margin: 2px 5px 10px 0px;
|
240
|
}
|
241
|
/*.example {*/
|
242
|
/*color: #ffffff;*/
|
243
|
/*text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);*/
|
244
|
/*background-color: #5bb75b;*/
|
245
|
/*background-image: -moz-linear-gradient(top, #62c462, #51a351);*/
|
246
|
/*background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));*/
|
247
|
/*background-image: -webkit-linear-gradient(top, #62c462, #51a351);*/
|
248
|
/*background-image: -o-linear-gradient(top, #62c462, #51a351);*/
|
249
|
/*background-image: linear-gradient(to bottom, #62c462, #51a351);*/
|
250
|
/*background-repeat: repeat-x;*/
|
251
|
/*border-color: #51a351 #51a351 #387038;*/
|
252
|
/*border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*/
|
253
|
/*width: 132px;*/
|
254
|
/*outline: 0;*/
|
255
|
/*}*/
|
256
|
/*.example:focus {*/
|
257
|
/*background-color: #51a351*/
|
258
|
/*}*/
|
259
|
|
260
|
/*.example:hover {*/
|
261
|
/*color: #333333;*/
|
262
|
/*background-color: #51a351;*/
|
263
|
/**background-color: #499249;*/
|
264
|
/*}*/
|
265
|
|
266
|
.example {
|
267
|
color: #ffffff;
|
268
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
269
|
background-color: #5bb75b;
|
270
|
background-image: -moz-linear-gradient(top, #A3F5A3, #7DAF7D);
|
271
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#A3F5A3), to(#7DAF7D));
|
272
|
background-image: -webkit-linear-gradient(top, #A3F5A3, #7DAF7D);
|
273
|
background-image: -o-linear-gradient(top, #A3F5A3, #7DAF7D);
|
274
|
background-image: linear-gradient(to bottom, #A3F5A3, #7DAF7D);
|
275
|
background-repeat: repeat-x;
|
276
|
border-color: #7DAF7D #7DAF7D #7DAF7D;
|
277
|
/*border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*/
|
278
|
width: 106px;
|
279
|
outline: 0;
|
280
|
}
|
281
|
.example:focus {
|
282
|
background-color: #7DAF7D;
|
283
|
}
|
284
|
|
285
|
.example:hover {
|
286
|
color: #333333;
|
287
|
background-color: #7DAF7D;
|
288
|
*background-color: #499249;
|
289
|
text-shadow: 0 0px 0 rgba(0, 0, 0, 0.25);
|
290
|
}
|
291
|
|
292
|
#page input.green-border,a.green-border, #page textarea.green-border {
|
293
|
border-color: rgba(98, 196, 98, 0.8);
|
294
|
outline: 0;
|
295
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(98, 196, 98, 0.6);
|
296
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(98, 196, 98, 0.6);
|
297
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(98, 196, 98, 0.6);
|
298
|
}
|
299
|
|
300
|
.yellow {
|
301
|
background-color: rgba(255, 254, 226, 1)
|
302
|
}
|
303
|
|
304
|
input.green {
|
305
|
background-color: rgba(153, 255, 24, 0.2)
|
306
|
}
|
307
|
|
308
|
#main_table, #main_table table {
|
309
|
width: 100%;
|
310
|
max-width: 100%;
|
311
|
|
312
|
}
|
313
|
|
314
|
.relative {
|
315
|
position: relative;
|
316
|
|
317
|
}
|
318
|
|
319
|
.citation_nr {
|
320
|
font-weight: bold;
|
321
|
font-size: 1.6em;
|
322
|
}
|
323
|
|
324
|
.docsim_nr {
|
325
|
font-weight: bold;
|
326
|
font-size: 1.2em;
|
327
|
}
|
328
|
|
329
|
.number_td {
|
330
|
text-align: center;
|
331
|
}
|
332
|
|
333
|
.border > tbody > tr > td, .border > tbody > tr > th, .border {
|
334
|
border: 1px solid #999;
|
335
|
border-collapse: collapse;
|
336
|
border-spacing: 0;
|
337
|
border-radius: 5px;
|
338
|
}
|
339
|
|
340
|
.extracted_data_table td, .result_table td, .result_table th, .extracted_data_table th {
|
341
|
/*border-right: 1px solid #999;*/
|
342
|
border: 1px solid #999;
|
343
|
}
|
344
|
|
345
|
#main_table {
|
346
|
-moz-box-shadow: 0px 0px 20px 1px #eeeeee;
|
347
|
-webkit-box-shadow: 0px 0px 20px 1px #eeeeee;
|
348
|
box-shadow: 0px 0px 20px 1px #eeeeee;
|
349
|
max-width: 100%;
|
350
|
}
|
351
|
|
352
|
|
353
|
table, th, td
|
354
|
{
|
355
|
border-collapse: collapse;
|
356
|
border-spacing: 0;
|
357
|
padding: 10px;
|
358
|
background-color: white;
|
359
|
}
|
360
|
|
361
|
.section {
|
362
|
background-color: #f5f5f5;
|
363
|
}
|
364
|
|
365
|
.grey {
|
366
|
color: #999;
|
367
|
}
|
368
|
|
369
|
.doc_nr {
|
370
|
width: 14px;
|
371
|
}
|
372
|
|
373
|
.doc_doi {
|
374
|
width: 10%;
|
375
|
}
|
376
|
|
377
|
.doc_score, .doc_year, .doc_pages, .ext_year, .ext_pages {
|
378
|
width: 30px;
|
379
|
}
|
380
|
|
381
|
.score {
|
382
|
float: left;
|
383
|
height: 100%;
|
384
|
padding: 10px;
|
385
|
}
|
386
|
|
387
|
|
388
|
|
389
|
#result_section span, #main_table td {
|
390
|
white-space: normal;
|
391
|
}
|
392
|
|
393
|
a[data-tooltip], a[data-tooltip]:visited {
|
394
|
position: relative;
|
395
|
text-decoration: none;
|
396
|
}
|
397
|
|
398
|
a[data-tooltip]:before {
|
399
|
content: "";
|
400
|
position: absolute;
|
401
|
border-bottom: 20px solid #333;
|
402
|
/*border-bottom: 20px solid #dfe3e9;*/
|
403
|
border-left: 30px solid transparent;
|
404
|
border-right: 30px solid transparent;
|
405
|
visibility: hidden;
|
406
|
top: 22px;
|
407
|
left: -10px;
|
408
|
}
|
409
|
|
410
|
a[data-tooltip]:after {
|
411
|
|
412
|
font-size: 0.85em;
|
413
|
content: attr(data-tooltip);
|
414
|
position: absolute;
|
415
|
color: white;
|
416
|
/*color: #757575;*/
|
417
|
top: 32px;
|
418
|
left: -10px;
|
419
|
background: #333;
|
420
|
/*background: #dfe3e9;*/
|
421
|
padding: 2px 10px;
|
422
|
-webkit-border-radius: 10px;
|
423
|
-moz-border-radius: 10px;
|
424
|
border-radius: 10px;
|
425
|
white-space: nowrap;
|
426
|
visibility: hidden;
|
427
|
}
|
428
|
|
429
|
a.left-tooltip[data-tooltip]:after {
|
430
|
top: 32px;
|
431
|
left: -140px;
|
432
|
white-space: normal;
|
433
|
visibility: hidden;
|
434
|
}
|
435
|
|
436
|
a[data-tooltip]:hover:before, a[data-tooltip]:hover:after {
|
437
|
visibility: visible;
|
438
|
-webkit-transition: visibility 0s linear .3s;
|
439
|
-moz-transition: visibility 0s linear .3s;
|
440
|
-o-transition: visibility 0s linear .3s;
|
441
|
transition: visibility 0s linear .3s;
|
442
|
}
|