aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/config/style.css
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2011-04-30 08:17:40 -0600
committerGravatar Brendan Taylor <whateley@gmail.com>2011-04-30 08:17:40 -0600
commitceeba25242492db44091a4c87b046a25527d2f59 (patch)
tree5687dda2e9847b28ba48974d5246654eca281311 /examples/config/style.css
parentb0d2559157d0b060e2a2c2c33f08bed5f9cfaf51 (diff)
parentcd7ff839afd2af2ec78868d91eca7fd4a2d4f117 (diff)
Merge branch 'experimental' into scrollbars
Diffstat (limited to 'examples/config/style.css')
-rw-r--r--examples/config/style.css28
1 files changed, 28 insertions, 0 deletions
diff --git a/examples/config/style.css b/examples/config/style.css
new file mode 100644
index 0000000..a368aa0
--- /dev/null
+++ b/examples/config/style.css
@@ -0,0 +1,28 @@
+#uzbl_link_hints > span {
+ z-index: 1000 !important;
+
+ background-color: #333 !important;
+ margin: 0 !important;
+ padding: 3px !important;
+
+ color: #ccc !important;
+ font-size: 9px !important;
+ line-height: 9px !important;
+ font-weight: bold !important;
+ font-variant: normal !important;
+ text-decoration: none !important;
+
+ -webkit-transform: translate(-5px,-5px);
+ opacity: 0.8;
+ -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;
+}
+
+/* vim:set et ts=4: */