My dotfiles. Period.

style.css 1.0KB

12345678910111213141516171819202122232425262728293031323334
  1. #uzbl_link_hints > span {
  2. z-index: 1000 !important;
  3. background-color: #333 !important;
  4. margin: 0 !important;
  5. padding: 3px !important;
  6. color: #ccc !important;
  7. font-size: 9px !important;
  8. line-height: 9px !important;
  9. font-weight: bold !important;
  10. font-variant: normal !important;
  11. text-decoration: none !important;
  12. -webkit-transform: translate(-5px,-5px);
  13. opacity: 0.8;
  14. -webkit-border-radius: 6px !important;
  15. /* Play around with this, pretty fun things to do :) */
  16. /* -webkit-transform: scale(1) rotate(0deg) translate(-6px,-5px) !important; */
  17. }
  18. /* we can have different colours for different types of hints! */
  19. #uzbl_link_hints.new-window > span {
  20. background-color: #ffff00 !important;
  21. color: black !important;
  22. }
  23. .uzbl-follow-text-match {
  24. outline: 2px solid invert;
  25. background: #333 !important;
  26. color: white !important;
  27. }
  28. /* vim:set et ts=4: */