-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.css
129 lines (124 loc) · 2.02 KB
/
app.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
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
124
125
126
127
128
129
html, body {
background-color:#e5e5e5;
font-family: 'helvetica', Arial, sans-serif;
margin: 0;
padding: 0;
}
/* The console container element */
#console {
color:#fff;
height: 100%;
background-color:#232323;
font-family: monospace;
position:absolute;
left:0;
top:0;
word-wrap: break-word;
font-size: 18px;
}
/* The inner console element. */
.jqconsole {
padding: 20px;
}
/* The cursor. */
.jqconsole-cursor {
background-color: #666;
}
/* The cursor color when the console looses focus. */
.jqconsole-blurred .jqconsole-cursor {
background-color: #333;
}
/* The current prompt text color */
.jqconsole-prompt {
color: #fff;
}
/* The command history */
.jqconsole-old-prompt {
color: #aaa ;
font-weight: normal;
}
/* The text color of the output. */
.jqconsole-output {
color: #aaa;
}
/* resize bars */
#verticalbar{
height: 100%;
cursor: col-resize;
background-color: #999;
position:absolute;
top:0;
z-index: 1000;
}
#horizontalbar{
width: 100%;
cursor: row-resize;
background-color:#999;
}
/*right pane*/
#controller {
height: 100%;
overflow: scroll;
top:0;
}
.menu-title {
display: block;
height: 48px;
padding-left:20px;
border-bottom: solid 2px #666;
}
.menu-title h2{
display: inline-block;
margin: 0;
font-size: 20px;
line-height: 48px;
}
#clear-btn{
height:48px;
line-height:48px;
font-size: 16px;
position: absolute;
right: 0px;
top: 0px;
padding: 0 10px;
cursor: pointer;
background-color: #2696FB;
}
#scope{
width:100%;
overflow: scroll;
}
#scope table{
word-wrap: break-word;
width:100%;
border-collapse: collapse;
}
th,td{
height:30px;
}
th{
border-left: 2px solid #c9c9c9;
border-bottom: 2px solid #c9c9c9;
}
td{
border: 2px solid #c9c9c9;
padding:0px 10px;
font-size:18px;
}
#log{
width:100%;
overflow: scroll;
}
#log ul{
padding-left: 0px;
}
#log li{
list-style-type: none;
padding-left: 20px;
font-size: 18px;
height:30px;
line-height: 30px;
}
#log li:nth-child(odd) {
background-color: #cecece
}