myconfig

my config files
git clone https://a3nm.net/git/myconfig/
Log | Files | Refs | README

style.css (957B)


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