MediaWiki:Medik.css

From OpenJuris

Revision as of 21:08, 17 December 2025 by Nilotpal Datta (talk | contribs) (Created page with "Gradient for the navbar: .navbar { background: #8E2DE2; fallback: background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2); background: linear-gradient(to right, #4A00E0, #8E2DE2); } If you want to use your primary color as a variable: :root { --medik-base: #8E2DE2; }")
(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.
/* Gradient for the navbar */
.navbar {
  background: #8E2DE2; /* fallback */
  background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2);
  background: linear-gradient(to right, #4A00E0, #8E2DE2);
}

/* If you want to use your primary color as a variable */
:root {
  --medik-base: #8E2DE2;
}