User:JFletcher/vector.css: Difference between revisions

(Making the banner stay at the top when scrolling down - That has annoyed me from the start)
(Nicer colour gray +Making footer links readable (white colour) +Hiding social media links)
Line 12: Line 12:
body{
body{
   background-attachment:scroll;
   background-attachment:scroll;
  background-color:#333; /* Nicer colour gray */
}
/* Making footer links readable */
#footer, #footer a{
  color:#FFF;
}
/* Hiding social media links */
div[style="float:right; margin-top: -40px; padding:0 3px 0 3px; background-color:#DAEFFF; border:1px solid #ACF;"], /* Top of page */
#p-tb+div[style="text-align:center;"][align="center"] /* Sidebar */
{
  display:none;
}
}

Revision as of 03:20, 11 January 2012

/* Removing links that I never use from "personal tools" bar at the top right of the screen */
#pt-adminlinks, #pt-watchlist, #pt-newmessages{
   display:none;
}

/* Making the black colour of the "personal links" bar at the top right of the screen only as long as the list of links */
#p-personal ul{
   padding:0;
}

/* Making the banner stay at the top when scrolling down - That has annoyed me from the start */
body{
   background-attachment:scroll;
   background-color:#333; /* Nicer colour gray */
}

/* Making footer links readable */
#footer, #footer a{
   color:#FFF;
}

/* Hiding social media links */
div[style="float:right; margin-top: -40px; padding:0 3px 0 3px; background-color:#DAEFFF; border:1px solid #ACF;"], /* Top of page */
#p-tb+div[style="text-align:center;"][align="center"] /* Sidebar */
{
   display:none;
}