User:JFletcher/vector.css: Difference between revisions

(Now I feel stupid - That's why this hasn't been working this whole time? Why haven't I noticed that?!)
(No longer required)
Line 2: Line 2:
#pt-adminlinks, #pt-watchlist, #pt-newmessages{
#pt-adminlinks, #pt-watchlist, #pt-newmessages{
   display:none;
   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;
}
}



Revision as of 01:19, 26 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 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 text readable */
#footer, #footer a,
div#footer ul li
{
   color:#FFF;
}

/* Differentiating between footer text and footer links */
#footer a{
   text-decoration:underline;
}

#footer a:hover{
   color:#FF0; /* Now needed to make different from :link ^^ */
}

/* Hiding social media links */
#ShareLinksBox, /* Top of page */
#p-tb+div[style="text-align:center;"][align="center"] /* Sidebar */
{
   display:none;
}