-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeyCandy.css
More file actions
40 lines (36 loc) · 776 Bytes
/
keyCandy.css
File metadata and controls
40 lines (36 loc) · 776 Bytes
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
.keycandy:before,.keycandy *[accesskey]:before {
background:#ffa;
position:absolute;
font:16px/24px Arial,Helvetica,sans-serif;
vertical-align:middle;
color:#333;
text-align:center;
border:1px solid #888;
-moz-border-radius:8px;
-webkit-border-radius:8px;
border-radius:8px;
-moz-box-shadow:0 0 3px #bababa;
-webkit-box-shadow:0 0 3px #bababa;
box-shadow:0 0 3px #bababa;
text-decoration:none !important;
text-indent: 0 !important;
z-index:999;
opacity: 0.9;
-moz-opacity: 0.9;
-webkit-opacity: 0.9;
}
.keycandy:before {
top:2px;
content: attr(data-kchint);
padding: 0 .25em;
}
.keycandy *[accesskey] {
position:relative
}
.keycandy *[accesskey]:before {
right:-8px;
bottom:-8px;
content:attr(accesskey);
width:24px;
height:24px
}