-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdom_inspector.css
52 lines (45 loc) · 958 Bytes
/
dom_inspector.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
/*
* dom_inspector
* https://github.com/tpopela/dom_inspector
* Tomas Popela
*/
/* highlighted item on page */
.highlightPageItem {
border: 4px solid rgba(255, 170, 0, 0.6);
}
/* highlighted item in DOM tree list */
.highlightDomItem {
background-color: rgba(255, 255, 153, 0.9);
}
/* DOM tree list item properities */
.DOMListItem {
list-style: none outside none;
margin-left: 0;
padding-left: 1em;
text-indent: -1em;
}
/* DOM tree list item href colors */
#domDiv a:link {
color: #000000;
}
#domDiv a:visited {
color: #000000;
}
#domDiv a:hover {
color: #FF3366;
}
#domDiv a:active {
color: #FF3366;
}
/* Look of whole DOM tree list */
#domDiv {
background-color: rgba(125, 125, 125, 0.6);
border: 2px solid rgba(125, 125, 125, 0.6);
font-size: small;
right: 20px;
top: 20px;
}
/* Element's id and CSS classes inputs look */
#inputDiv {
background-color: rgba(63,143,210,0.6)
}