blob: 91469e170748d35aed47aa16e61a5ccdf5978581 (
plain)
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
|
.form, .paperInfo {
padding: 10px;
width: 100%;
}
.citations ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.citations li {
list-style-type: none;
margin: 0;
padding-bottom: 40px;
}
.type {
color: #888;
}
.gray {
padding: 3px;
}
.gray .pdfLink {
cursor: pointer;
color: #11f;
}
.param {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
}
input.notes { width: 400px; }
.param .btn {
margin-top: 5px;
}
.vetting {
width: 250px;
margin-right: 10px;
}
.pdf_links a.selected {
font-weight: bold;
}
iframe.pdfViewer {
margin: 10px 0;
width: 100%;
height: 75vh;
border: 1px solid black;
}
header select {
margin-right: 10px;
width: 100px;
}
header a {
color: white;
text-decoration: none;
font-weight: normal;
}
.desktop header a:hover {
text-decoration: underline;
}
|