blob: 110bb593e3a89b9e9fd079e796290927fe85f61a (
plain) (
blame)
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
|
.card-body {
text-align: left;
display: flex;
}
.doc-title {
font-size: 1.25em;
margin: 0;
}
.doc-domain-score {
margin-top: 0;
display: flex;
flex-direction: row;
color: gray;
}
.doc-domain {
margin: 0 1em 0 0;
}
.image-container {
margin-right: 1em;
}
.image {
height: 50px;
width: 50px;
object-fit: contain;
}
.doc-text {
display: inline-grid;
}
.doc-content {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
|