Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:Home/Actions.css

Template page
Revision as of 08:00, 24 August 2025 by Eloise Zomia (talk | contribs) (Created page with "Actions bar: .lw-actions { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px; margin: 12px 0 28px 0; } .lw-actions a { display: inline-block; padding: 8px 12px; border: 1px solid #dfe5da; border-radius: 8px; background: #fff; color: #2d5016; font-weight: 600; text-decoration: none; line-height: 1.2; transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease; }...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
/* Actions bar */
.lw-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 28px 0;
}

.lw-actions a {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #dfe5da;
  border-radius: 8px;
  background: #fff;
  color: #2d5016;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

/* Hover/active */
.lw-actions a:hover {
  background: #2d5016;
  color: #fff;
  border-color: #2d5016;
}
.lw-actions a:active { transform: translateY(1px); }

/* Neutralize MediaWiki redlink styling inside this bar */
.lw-actions a.new { color: #2d5016; }
.lw-actions a.new:hover { color: #fff; }