blob: bf769c87bf6f9ddfdef731b8f635e37991374a37 (
plain)
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
|
#uzbl_link_hints > span {
z-index: 1000 !important;
background-color: #FFFF00 !important;
margin: 0 !important;
padding: 3px !important;
color: #000 !important;
font-size: 12px !important;
line-height: 12px !important;
font-weight: bold !important;
font-variant: normal !important;
text-decoration: none !important;
text-transform: uppercase;
-webkit-transform: translate(-3px,-1px);
opacity: 1.0;
-webkit-border-radius: 6px !important;
/* Play around with this, pretty fun things to do :) */
/* -webkit-transform: scale(1) rotate(0deg) translate(-6px,-5px) !important; */
}
/* we can have different colours for different types of hints! */
#uzbl_link_hints.new-window > span {
background-color: #ffff00 !important;
color: black !important;
}
.uzbl-follow-text-match {
outline: 2px solid invert;
background: #333 !important;
color: white !important;
}
/* vim:set et ts=4: */
|