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: Difference between revisions

MediaWiki interface page
No edit summary
mNo edit summary
Line 108: Line 108:
   box-shadow: 0 0 10px rgba(0,255,255,0.4);
   box-shadow: 0 0 10px rgba(0,255,255,0.4);
   transform: scale(1.02);
   transform: scale(1.02);
}
.panel-tech {
  background:
    linear-gradient(rgba(27,27,27,0.96), rgba(27,27,27,0.96)),
    url('/images/panel-BG.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
}


#footer-info-lastmod { display: none; }
#footer-info-lastmod { display: none; }

Revision as of 17:15, 8 June 2025

/* CSS placed here will be applied to all skins */
#neo-europa-homepage {
  background: #0b0b0b;
  color: #ccc;
  padding: 2em;
}

#neo-europa-homepage .panel:hover {
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
  transform: scale(1.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Flicker effect for redlinks (nonexistent pages) */
a.new {
  color: #ff0066;
  animation: flicker 1.2s infinite alternate;
  text-shadow: 0 0 2px #ff0066;
  font-weight: bold;
}

@keyframes flicker {
  0%   { opacity: 1; text-shadow: 0 0 2px #ff0066; }
  25%  { opacity: 0.4; text-shadow: 0 0 6px #ff3388; }
  50%  { opacity: 0.8; text-shadow: 0 0 1px #ff0066; }
  75%  { opacity: 0.3; text-shadow: 0 0 5px #ff0055; }
  100% { opacity: 1; text-shadow: 0 0 3px #ff0066; }
}

.cyberpunk-link {
  color: #00ffff;
  text-shadow: none;
}

.cyberpunk-link:hover,
.cyberpunk-link:focus,
.cyberpunk-link:active {
  text-shadow: 0 0 5px #00ffff, 0 0 12px #00ffff;
  color: #00ffff;
}

.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;
}

.logo-grid-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
  padding: 20px;
}

.logo-tile img {
  display: block;
  border-radius: 8px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.logo-tile:hover img {
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.8);
  transform: scale(1.05);
}

div[style*="border: 1px"] {
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

div[style*="border: 1px"]:hover {
  box-shadow: 0 0 10px rgba(0,255,255,0.4);
  transform: scale(1.02);
}

.panel-tech {
  background:
    linear-gradient(rgba(27,27,27,0.96), rgba(27,27,27,0.96)),
    url('/images/panel-BG.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#footer-info-lastmod { display: none; }