blob: a437c902c07e8bbcf3517e943d83e386809f63cc (
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
|
.query {
margin: 10px 0;
}
.query label {
display: flex;
flex-direction: row;
}
.query label span {
display: inline-block;
width: 100px;
}
.results {
margin: 10px 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.results .result {
width: 250px;
color: #333;
}
.results .result .img {
text-align: center;
height: 300px;
}
.results .result img {
max-width: 100%;
max-height: 300px;
}
.sha256 {
display: inline-block;
overflow: hidden;
white-space: pre;
max-width: 100%;
}
.results .result {
padding: 10px;
}
|