MediaWiki:Common.css

From The Maceys in California
Revision as of 23:58, 25 January 2026 by Lynn Macey (talk | contribs) (Created page with "CSS placed here will be applied to all skins: Added for Interactive Check box: .listCheckbox { cursor: pointer; color: #FFFFFF; border-radius: 50%; height: 1.8rem; width: 1.8rem; line-height: 1.8rem; text-align: center; font-size: 1.5rem; border: 1px solid #00AA00; display: inline-block; } @keyframes checkAnimation { 0% { transform: rotate(-30deg); background-color: rgba(1, 1, 1, 0); color: rgba(1, 1, 1, 0); } 100% {...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will be applied to all skins */

/* Added for Interactive Check box */
.listCheckbox {
  cursor: pointer;
  color: #FFFFFF;
  border-radius: 50%;
  height: 1.8rem;
  width: 1.8rem;
  line-height: 1.8rem;
  text-align: center;
  font-size: 1.5rem;
  border: 1px solid #00AA00;
  display: inline-block;
}

@keyframes checkAnimation {
  0% {
    transform: rotate(-30deg);
    background-color: rgba(1, 1, 1, 0);
    color: rgba(1, 1, 1, 0);
  }

  100% {
    background-color: #00AA00;
    color: #FFFFFF;
  }
}

.listCheckboxUnchecked {
  background-color: rgba(1, 1, 1, 0);
  color: rgba(0, 0, 0, 0);
}

.listCheckboxChecked {
  animation: checkAnimation 0.5s;
  background-color: #00AA00;
  color: #FFFFFF;
}

/* For the Note class */
.Alp-Note a { text-decoration: underline; }