blob: 168f4a6ac3f71a328727d9c4db1bf6783b03de32 (
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
|
.descriptions-header {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.descriptions-title {
flex: auto;
overflow: hidden;
color: #000000d9;
font-weight: 700;
font-size: 16px;
line-height: 1.5715;
white-space: nowrap;
text-overflow: ellipsis;
}
.descriptions-view {
width: 100%;
border-radius: 2px;
}
.descriptions-table {
width: 100%;
table-layout: fixed;
}
.descriptions-row>td {
padding-bottom: 16px;
}
.descriptions-item {
padding-bottom: 0;
vertical-align: top;
}
.descriptions-item-container {
display: flex;
}
.descriptions-item-container .descriptions-item-label, .descriptions-item-container .descriptions-item-content {
display: inline-flex;
align-items: baseline;
}
.descriptions-item-label {
color: #000000d9;
font-weight: 400;
font-size: 14px;
line-height: 1.5715;
text-align: start;
}
.descriptions-item-content {
display: table-cell;
flex: 1;
color: #000000d9;
font-size: 14px;
line-height: 1.5715;
word-break: break-word;
overflow-wrap: break-word;
}
.descriptions-item-label::after {
content: ":";
position: relative;
top: -.5px;
margin: 0 8px 0 2px;
}
|