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

MediaWiki:Common.css

MediaWiki interface page
Revision as of 04:21, 31 May 2025 by Admin AK (talk | contribs)

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 */
.topnav {
  background-color: #1a1a1a;
  overflow: hidden;
  padding: 10px;
  text-align: center;
}

.topnav a {
  display: inline-block;
  color: #eaeaea;
  text-align: center;
  padding: 10px 20px;
  text-decoration: none;
  font-family: 'Segoe UI', sans-serif;
  font-weight: bold;
  font-size: 15px;
}

.topnav a:hover {
  background-color: #444;
  color: #fff;
  border-radius: 5px;
}

.infobox {
  border-collapse: collapse;
  background-color: #000000;
  color: white;
  margin: 0.5em 0 0.5em 1em;
  padding: 0.4em;
  float: right;
  clear: right;
}
.infobox th {
  background-color: #000000;
  padding: 0.25em;
}
.infobox td {
  padding: 0.25em;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

.glitch-banner {
  background-color: black;
  padding: 40px 20px;
  text-align: center;
  border: 2px solid #00ffff;
  box-shadow: 0 0 15px #00ffff;
}

.glitch-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 48px;
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff;
  position: relative;
  display: inline-block;
  animation: glitch 2s infinite;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  color: #ff00ff;
  z-index: -1;
}

.glitch-text::before {
  animation: glitchTop 2s infinite;
}

.glitch-text::after {
  color: #00ffff;
  animation: glitchBottom 2s infinite;
}