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 */
#neo-europa-homepage {
background: #0b0b0b;
color: #ccc;
padding: 2em;
}
/* 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);
}
#footer-info-lastmod { display: none; }