User:JFletcher/vector.css: Difference between revisions

No edit summary
(Now I feel stupid - That's why this hasn't been working this whole time? Why haven't I noticed that?!)
Line 32: Line 32:


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

Revision as of 00:11, 25 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 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;
}