blob: 5a06c3b2b77ffd992577e5f88fe80b9da369a4a4 (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
.cldsmodelling {
height: 90vh;
overflow: hidden;
margin-left: 1px;
margin-right: 1px;
}
.cl_panel {
margin-bottom: 20px;
background-color: #fff;
border: 1px solid transparent;
border-radius: 4px;
box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
width:100% ;
height: 100%;
border-color: #337ab7;
}
.cl_panel_heading{
color: #fff;
background-color: #337ab7;
border-color: #337ab7;
padding: 10px 15px;
border-bottom: 1px solid transparent;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
font-size: 12px;
}
.pull-left{
float: left !important;
}
.pull-right{
float: right !important;
}
.color_white {
color: white;
}
.cl_view_body {
height: 83.5vh; width: 100%;
}
.logo_text {
font-size: 20px;
font-weight: bold;
}
.js_canvas {
margin-top: 200px;
margin-left: 20px;
margin-right: 20px;
}
.log_div{
border: 2px solid gray;
margin-right: 20px;
font-size: 12px;
}
.log_table {
width: 100%;
height: 87%;
overflow: auto;
}
.row_10_per {
width: 10%;
}
.row_30_per {
width: 30%;
}
.row_70_per {
width: 70%;
}
.table_header {
font-weight: bold;
}
.status_title{
position: absolute;
left: 61%;
top: 151px;
font-size:20px;
}
.status{
background-color: gray;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
border-radius: 50px;
}
.status_table {
position: absolute;
left: 61%;
top: 191px;
font-size:10px;
}
|