-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathindex.css
More file actions
112 lines (99 loc) · 2.12 KB
/
index.css
File metadata and controls
112 lines (99 loc) · 2.12 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
}
input {
height: 100%;
flex: 1;
min-width: 0;
border: 1px solid #AAAAAA;
padding: 0 5px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
}
.container .barcode-scanner-view {
width: 100%;
height: 60%;
display: none;
}
.container .guide-view {
width: 100%;
height: 60%;
background-color: #202020;
display: flex;
justify-content: center;
align-items: center;
padding: 0 50px;
color: #5D5D5D;
font-size: 16px;
text-align: center;
}
.container .form-view {
width: 100%;
height: 40%;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.container .form-view .item {
width: calc(100% - 30px);
height: 42px;
display: flex;
align-items: center;
}
.container .form-view .item .content {
width: 83%;
height: 100%;
display: flex;
}
.container .form-view .sn .content input,
.container .form-view .mac .content input,
.container .form-view .eid .content input {
border-right: unset;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.container .form-view .item .title {
width: 17%;
height: 100%;
display: flex;
align-items: center;
}
.container .form-view .item .content .open-btn,
.container .form-view .item .content .decode-btn {
height: 100%;
border: unset;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
color: #FFFFFF;
font-size: 16px;
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
cursor: pointer;
}
.container .form-view .item .content .open-btn {
width: 35%;
background-color: #306877;
}
.container .form-view .item .content .decode-btn {
width: 50%;
background-color: #FE8E14;
display: none;
}