#
vincent
2020-06-01 7beb05d90c35c4cffbf171e3cdf7784a6861ecea
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
113
114
115
116
117
118
119
120
121
122
123
body {
    padding: 10px;
    background-color: #f1f1f1;
}
 
/* 第一模块 */
.log-board {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
    height: 25%;
}
 
/* 左 */
.command-log {
    float: left;
    height: 100%;
    width: 20%;
    text-align: center;
}
.command-log h2 {
    padding: 10px;
}
.crn-command-item {
    padding: 20px 0;
}
.crn-command-item label {
    font-size: 20px;
    font-weight: bold;
    vertical-align: middle;
}
.crn-command-item span {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #2e9926;
    border-radius: 5px;
    vertical-align: middle;
}
.crn-command-item input {
    vertical-align: middle;
    outline: none;
    width: 70%;
}
 
/* 右 */
.crn-state {
    float: left;
    height: 100%;
    width: 80%;
    overflow: hidden;
}
/* 堆垛机状态表 */
#crn-state-table {
    font-size: 12px;
    border-collapse: collapse;
    margin: 0 auto;
    text-align: center;
}
#crn-state-table td, #crn-state-table th {
    border: 1px solid #cad9ea;
    color: #666;
    height: 25px;
}
#crn-state-table thead th {
    background-color: #CCE8EB;
    width: 300px;
}
#crn-state-table tr:nth-child(odd) {
    background: #fff;
}
#crn-state-table tr:nth-child(even) {
    background: #F5FAFA;
}
 
/* 第二模块 */
.crn-msg {
    overflow: hidden;
    margin-top: 10px;
    height: 20%;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
}
/* 堆垛机状态信息表 */
#crn-msg-table {
    font-size: 12px;
    border-collapse: collapse;
    margin: 0 auto;
    text-align: center;
}
#crn-msg-table td, #crn-msg-table th {
    border: 1px solid #cad9ea;
    color: #666;
    height: 25px;
}
#crn-msg-table thead th {
    background-color: #CCE8EB;
    width: 400px;
}
#crn-msg-table tr:nth-child(odd) {
    background: #fff;
}
#crn-msg-table tr:nth-child(even) {
    background: #F5FAFA;
}
 
/* 第三模块 */
.crn-operation {
    margin-top: 10px;
    height: 25%;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
}
 
.crn-output {
    margin-top: 10px;
    height: 23%;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
}