User:Infi/common.css

From Pikipedia, the Pikmin wiki
Revision as of 15:47, December 21, 2019 by Infi (talk | contribs) (Initialize my user CSS)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* font tweaks, mostly just for me */
/* ------------------------------- */

* {
  font-family: "Config", "Benton Sans", "BentonSans", "Segoe UI", sans-serif;
}

.firstHeading {
  font-weight: 300;
}

/* ----------- */
/* link tweaks */
/* ----------- */

.new::before {
  content: "(new) "
}

/* -------------- */
/* sidebar tweaks */
/* -------------- */

/* does nothing, just in case */
.pBody li::marker {
  display: none;
}

/* remove the bullet before a link */
.pBody ul {
  list-style-image: url(about:blank)
}

/* replace it with a dash                                         */
/* also applies to the top bar but honestly that's an improvement */
.pBody li::before {
  content: "- "
}

/* modify margin so that it's not so far to the right */
.pBody > ul[dir="ltr"] {
  margin-left: 10px;
}

/* ---------------------------------------------- */
/* remove the leaf-looking borders in some places */
/* ---------------------------------------------- */

/* sidebar */
.portlet h3,
.pBody {
  border: none;
}