-
Notifications
You must be signed in to change notification settings - Fork 30
/
index.css
81 lines (73 loc) · 1.17 KB
/
index.css
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
#app {
width: 800px;
margin: 0 auto;
padding: 20px 0;
}
.preview-box {
margin-bottom: 16px;
}
.preview {
box-shadow: 7px 4px 15px #ccc;
background: #fff;
}
.preview-picture {
max-width: 100%;
}
.preview-info {
padding: 20px;
display: flex;
flex-direction: row;
}
.preview-info-left {
flex-grow: 1;
width: 0;
position: relative;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
.preview-info-split {
border-left: 2px solid #ddd;
height: 39px;
margin-top: 6px;
margin-right: 12px;
margin-left: 12px;
}
.preview-info-right {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
.preview-info-model,
.preview-info-device {
font-weight: bold;
font-size: 18px;
}
.preview-info-date,
.preview-info-gps {
font-size: 14px;
color: #aaa;
}
.preview-info-brand {
position: absolute;
right: 0;
top: 0;
height: 100%;
display: flex;
align-items: center;
}
.preview-info-brand img {
height: 39px;
}
.props {
margin-top: 20px;
}
.props .ant-form-inline .ant-form-item {
margin-bottom: 10px;
}
.op {
display: flex;
justify-content: space-between;
}