MediaWiki:Common.css: Difference between revisions
MediaWiki interface page
More actions
Created page with "→CSS placed here will be applied to all skins: →Scaevus horizontal navigation menu: .scaevus-menu { display: flex; justify-content: center; align-items: stretch; flex-wrap: wrap; gap: 2px; margin: 15px 0 25px 0; padding: 4px; background: #08080d; border: 1px solid #6826c9; border-radius: 6px; box-shadow: 0 0 12px rgba(125, 38, 255, 0.45), 0 0 24px rgba(225, 32, 255, 0.18); } .scaevus-menu-item { f..." |
No edit summary |
||
| Line 7: | Line 7: | ||
justify-content: center; | justify-content: center; | ||
align-items: stretch; | align-items: stretch; | ||
flex-wrap: wrap; | flex-wrap: no-wrap; | ||
gap: 2px; | gap: 2px; | ||
margin: 15px 0 25px 0; | margin: 15px 0 25px 0; | ||
Revision as of 05:07, 8 July 2026
/* CSS placed here will be applied to all skins */
/* Scaevus horizontal navigation menu */
.scaevus-menu {
display: flex;
justify-content: center;
align-items: stretch;
flex-wrap: no-wrap;
gap: 2px;
margin: 15px 0 25px 0;
padding: 4px;
background: #08080d;
border: 1px solid #6826c9;
border-radius: 6px;
box-shadow:
0 0 12px rgba(125, 38, 255, 0.45),
0 0 24px rgba(225, 32, 255, 0.18);
}
.scaevus-menu-item {
flex: 1 1 150px;
text-align: center;
}
.scaevus-menu-item a {
display: block;
padding: 13px 22px;
color: #ffffff !important;
font-size: 15px;
font-weight: bold;
letter-spacing: 1px;
text-transform: uppercase;
text-decoration: none !important;
background: linear-gradient(
135deg,
#182a75 0%,
#6021a8 50%,
#ad168f 100%
);
border-radius: 3px;
transition:
background 0.25s ease,
box-shadow 0.25s ease,
transform 0.25s ease;
}
.scaevus-menu-item a:hover {
color: #ffffff !important;
background: linear-gradient(
135deg,
#175bea 0%,
#8428e8 48%,
#e322cd 100%
);
box-shadow:
0 0 10px rgba(49, 107, 255, 0.75),
0 0 18px rgba(219, 38, 255, 0.55);
transform: translateY(-2px);
}
.scaevus-menu-item a:visited {
color: #ffffff !important;
}
@media screen and (max-width: 650px) {
.scaevus-menu {
display: block;
}
.scaevus-menu-item {
display: block;
margin-bottom: 3px;
}
.scaevus-menu-item:last-child {
margin-bottom: 0;
}
}