User:Mike/simple.css

From Wiktionary, the free dictionary
Jump to navigation Jump to search

Note – after saving, you may have to bypass your browser’s cache to see the changes.

  • Mozilla / Firefox / Safari: hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (Command-R on a Macintosh);
  • Konqueror and Chrome: click Reload or press F5;
  • Opera: clear the cache in Tools → Preferences;
  • Internet Explorer: hold Ctrl while clicking Refresh, or press Ctrl-F5.

/*
===Colo(u)rs===
*/

/* Color of ordinary broken links + stubs */
a:link.new { text-decoration: underline; color: #D00000; }
a:link.stub { text-decoration: none; color: #800000; }
a:link.hover { color: red; text-decoration: none; }

/* Color of broken links + stub links amongst the 'p-cactions', i.e. the links corresponding to the tabs.
But how on earth to make the actual broken link red? I can get the underline, and the bullet red, but that's all  */
#p-cactions .new { text-decoration: underline; color: red; }
#p-cactions a:hover { text-decoration: none; color: red; }

/* The same for the links to user page, watchlist etc. */
#p-personal a:hover { text-decoration: none; color: red; }

/* And for the navigations and toolboxes */
#p-navigation a:hover { text-decoration: none; color: red; }
#p-tb a:hover { text-decoration: none; color: red; }

/*
===Toolboxes===
*/

/* Reorder and realign the toolboxes */
#p-search          { position: absolute; top: 0em; }
#p-cactions        { position: relative; top: 5.5em; }
#p-personal        { position: relative; top: 6em; }
#p-navigation      { position: relative; top: 6.5em;}
#p-tb              { position: relative; top: 7em; }
#p-lang            { position: relative; top: 6em; }

/* Remove links I don't use, and use better names for a few of the ones I do use */
li#t-upload { display: none; } 
li#feedlinks { display: none; }
  /* Does not work.... 
  li#pt-watchlist { content: "Watchlist"; }
  li#pt-mycontris { content: "Contribs"; } 
  li#ca-delete {content: "Delete"; }
  */


/*
===Fonts===
*/

/* Nicer fonts, please */
.firstHeading { font-size: 165%; font-weight:bold; }
body {font-size:90%; }

/* No marks for external links */
#bodyContent a.external {
    background: none !important;
    padding: 0;
}

/* Remove subheading */
#siteSub {display: none; }

/*
===Edititng===
*/

/* Size of textbox */
#wpTextbox1 { height: 500px; }