User:Acagastya/common.css

From Wikinews, the free news source you can write!
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 down Shift while clicking Reload, or press Ctrl-Shift-R (Cmd-Shift-R on Apple Mac); IE: hold Ctrl while clicking Refresh, or press Ctrl-F5; Konqueror: simply click the Reload button, or press F5; Opera users may need to completely clear their cache in Tools→Preferences. — More skins

/**************************************************************/
/* # Links */

/*
  bold + underline local links in article body
*/
.mw-redirect {
  font-weight: bold;
  text-decoration: underline;
}

/*
  add background to deadlinks
*/
a.new {
  background: #cb2431;
  border-radius: 5px;
  color: #fff;
  padding: 2px 5px;
}
/*
  visited deadlinks
*/
a.new:visited {
  background: #EF5350;
  color: #fff;
}

/*
  soft ext wiki link as {{w|Foo}}
*/
.mw-parser-output .interwiki-link-foreign > .extiw {
  background: #5AC8FA;
  border-radius: 5px;
  color: #fff !important;
  padding: 2px 5px;
}

.mw-parser-output .interwiki-link-foreign > a.extiw:visited {
  background: #BBDEFB;
  border-radius: 5px;
  color: #000 !important;
  padding: 2px 5px;
}

.mw-parser-output .interwiki-link-foreign > .extiw::before {
  content: "{{w|";
}

.mw-parser-output .interwiki-link-foreign > .extiw::after {
  content: "}}";
}

/*
  hard ext wiki link as [[w:]]
*/
.mw-parser-output :not(.interwiki-link-foreign) > .extiw {
  background: #FF375F;
  color: #fff !important;
  border-radius: 5px;
  padding: 2px 5px;
}

.mw-parser-output :not(.interwiki-link-foreign) > .extiw:visited {
  background: #FEC8D8;
  color: #000 !important;
  border-radius: 5px;
  padding: 2px 5px;
}

.mw-parser-output :not(.interwiki-link-foreign) > .extiw::before {
  content: "ext:";
}

/*
  local link exists as {{w|Foo}}
*/

.interwiki-link-local > a {
  color: white !important;
  background: rgb(48, 209, 88);
  padding: 2px 5px;
  border-radius: 5px;
}

.interwiki-link-local > a::before {
  content: "[[";
}

.interwiki-link-local > a::after {
  content: "]]";
}
/**************************************************************/
/* Left Menu */

/*
  first heading under the logo
*/
#mw-panel #p-logo + .portal h3 {
  display: block;
}

/**************************************************************/
/* RC */

/*
  New Page creation highlight
*/
.newPage a {
  background-color: rgb(255, 204, 0);
  border-radius: 5px;
  padding: 2px 5px;
}

.newPage a:visited {
  background-color: #FFF176;
  border-radius: 5px;
  padding: 2px 5px;
}

.newPage > a {
  color: #000 !important;
}

/*
  Highlight watchlist edits on RC
*/
.mw-changeslist-watched  .mw-title {
  background: #000;
  border-radius: 5px;
  padding: 3px 5px;
}

.mw-changeslist-watched span.mw-title a {
  color: #fff !important;
}

/*
  boldName
*/

.mw-changeslist a.username-bold-link {
  background: rgb(44, 190, 78);
  border-radius: 5px;
  color: #fff;
  padding: 2px 5px;
}

.mw-changeslist a.userpage-bold-link {
  background: rgb(94, 92, 230);
  border-radius: 5px;
  color: #fff;
  padding: 2px 5px;
}

/* no footer */

#footer {
 display: none;
}

/* no bullet */
.no-bullet {
  list-style: none;
}