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
|
.applet {
margin-bottom: 40px;
transition: opacity 0.2s cubic-bezier(0,0,1,1);
opacity: 0;
}
.applet.map {
width: 100vw;
height: 50vh;
}
.applet.loaded {
opacity: 1;
}
.row {
display: flex;
flex-direction: row;
justify-content: flex-start;
}
.q {
width: 100%;
padding: 5px;
font-size: 14pt;
}
.timing {
font-size: 9pt;
padding-top: 10px;
}
.results {
margin-top: 10px;
padding-bottom: 10px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.results > div {
width: 200px;
margin-left: 20px;
margin-bottom: 40px;
font-size: 8pt;
background: #000;
padding: 5px;
font-weight: 500;
}
.results > div img {
display: block;
margin-bottom: 4px;
width: 190px;
height: 190px;
background: rgba(255,255,255,0.05);
}
.results > div:nth-child(3n+1) {
margin-left: 0;
}
.query h2 {
margin-top: 0; padding-top: 0;
}
.img {
position: relative;
}
.img .bbox {
position: absolute;
color: rgba(255,0,0,1);
background: rgba(255,0,0,0.05);
border: 1px solid;
}
.cta {
padding-left: 20px;
font-size: 10pt;
}
.cta ol {
margin: 0;
padding: 0 0 20px 20px;
}
.searchContainer {
padding-top: 20px;
}
.uploadContainer > div {
position: relative;
width: 300px;
height: 300px;
display: flex;
align-items: center;
justify-content: center;
background: #333;
border: 3px dashed #fff;
border-radius: 10px;
opacity: 0.3;
transition: opacity 0.2s cubic-bezier(0,0,1,1);
}
.uploadContainer.active,
.desktop .uploadContainer > div:hover {
opacity: 1;
}
.uploadContainer input {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
opacity: 0;
cursor: pointer;
}
.uploadContainer img {
max-width: 40px;
}
/* tabulator */
.tabulator-row {
transition: background-color 100ms cubic-bezier(0,0,1,1);
background-color: rgba(255,255,255,0.0);
}
.desktop .tabulator-row:hover {
background-color: rgba(255,255,255,0.2);
}
.tabulator-row.tabulator-row-odd {
background-color: rgba(255,255,255,0.05);
}
.tabulator-row.tabulator-row-even {
background-color: rgba(255,255,255,0.1);
}
|