forked from christophercochran/Genesis-Visual-Hook-Guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
48 lines (44 loc) · 864 Bytes
/
styles.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
.filter { display: inline !important; color: #F89E43 !important; font-weight: bold !important; cursor: help; }
.genesis_hook {
color: #F89E43;
display: block;
padding: 2px 5px;
margin: 10px;
border: 1px solid;
overflow: hidden;
word-wrap: break-word;
cursor: help;
}
.wordpress_hook {
color: #21759B;
display: block;
padding: 2px 5px;
margin: 10px;
border: 1px solid;
overflow: hidden;
word-wrap: break-word;
}
.gvhg-overlayed .genesis_hook {
z-index: 9998;
color: white;
display: inline;
position: absolute;
background: #F89E43;
opacity: .8;
}
.gvhg-overlayed .genesis_hook:hover {
z-index: 9999;
opacity: 1;
}
.gvhg-overlayed .wordpress_hook {
z-index: 9998;
color: white;
display: inline;
position: absolute;
background: #21759B;
opacity: .8;
}
.gvhg-overlayed .wordpress_hook:hover {
z-index: 9999;
opacity: 1;
}