-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb-inspector.css
More file actions
67 lines (56 loc) · 1.1 KB
/
web-inspector.css
File metadata and controls
67 lines (56 loc) · 1.1 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
.inspector {
width: 100%;
position: absolute;
top: 0px;
left: 0px;
height: 315px;
background-color: white;
z-index: 1000;
padding: 0;
}
.inspector .tray {
width: 100%;
}
.inspector .handle {
height: 15px;
position: relative;
top: 300px;
background-color: #A2122F;
}
.inspector .text-editor {
margin-left: 2%;
width: 58%;
border: 2px solid #2C3B63;
margin: 20px 1% 20px 1%;
height: 250px;
float: left;
}
.inspector .property-editor {
width: 34%;
margin: 20px 1% 20px 1%;
height: 250px;
border: 2px solid #2C3B63;
float: right;
}
.inspector .property-editor .node-lookup {
border-bottom: 1px solid #2C3B63;
}
.inspector .property-editor .node-lookup .selector:before {
content: "Selector: ";
}
.inspector .property-editor .node-lookup .selector {
width: 150px;
margin-left: 10px;
}
.inspector .property-editor .node-lookup .nth:before {
content: "Index: ";
}
.inspector .property-editor .node-lookup .nth {
width: 50px;
margin-left: 10px;
}
.inspector .property-editor .node-lookup button {
float: right;
}
.inspector .property-editor .property-list {
}