blob: ecba518caa6822c7f6a891135f17e8cd1eab1226 (
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
66
67
68
69
70
71
72
73
74
75
76
77
|
.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;
}
.results {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.results > div {
width: 200px;
margin-left: 20px;
margin-bottom: 40px;
font-size: 8pt;
}
.results > div img {
margin-bottom: 4px;
width: 200px;
height: 200px;
background: rgba(255,255,255,0.05);
}
.results > div:nth-child(3n+1) {
margin-left: 0;
}
.query h2 {
margin-top: 0; padding-top: 0;
}
.cta {
padding-left: 20px;
font-size: 11pt;
}
.cta ol {
margin: 0;
padding: 0 0 20px 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;
}
|