MediaWiki:Common.css: Difference between revisions
MediaWiki interface page
More actions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* ---------- IMAGE-ONLY BUTTONS – | /* ---------- IMAGE-ONLY BUTTONS – CLEAN TEXT OUTLINE (NO STROKE) ---------- */ | ||
.cat-grid { | .cat-grid { | ||
display: flex; | display: flex; | ||
| Line 22: | Line 22: | ||
box-shadow: none !important; | box-shadow: none !important; | ||
overflow: hidden !important; | overflow: hidden !important; | ||
transition: transform 0.25s ease; | transition: transform 0.25s ease; | ||
cursor: pointer; | cursor: pointer; | ||
| Line 51: | Line 50: | ||
} | } | ||
/* TEXT OVERLAY: BLACK | /* TEXT OVERLAY: BOLD + CLEAN BLACK OUTLINE (via shadow) */ | ||
.cat-overlay { | .cat-overlay { | ||
position: absolute; | position: absolute; | ||
| Line 59: | Line 58: | ||
justify-content: center; | justify-content: center; | ||
color: white; | color: white; | ||
font-weight: 700; | font-weight: 700 !important; | ||
font-size: 1. | font-size: 1.1em; | ||
text-align: center; | text-align: center; | ||
padding: 8px; | padding: 8px; | ||
pointer-events: none; | pointer-events: none; | ||
background: rgba(0, 0, 0, 0.08); | background: rgba(0, 0, 0, 0.08); | ||
border-radius: 10px; | border-radius: 10px; | ||
transition: background 0.3s ease, text-shadow 0.3s ease; | transition: background 0.3s ease, text-shadow 0.3s ease; | ||
/* BLACK | /* CLEAN BLACK OUTLINE – NO STROKE ARTIFACTS */ | ||
- | text-shadow: | ||
-1.2px -1.2px 0 #000, | |||
1.2px -1.2px 0 #000, | |||
-1.2px 1.2px 0 #000, | |||
1.2px 1.2px 0 #000, | |||
-1.2px 0 0 #000, | |||
1.2px 0 0 #000, | |||
0 -1.2px 0 #000, | |||
0 1.2px 0 #000, | |||
0 0 6px rgba(0,0,0,0.6); /* soft glow */ | |||
} | } | ||
/* HOVER: remove tint + stronger | /* HOVER: remove tint + stronger outline glow */ | ||
.cat-button:hover .cat-overlay { | .cat-button:hover .cat-overlay { | ||
background: transparent; | background: transparent; | ||
text-shadow: | text-shadow: | ||
0 | -1.5px -1.5px 0 #000, | ||
1.5px -1.5px 0 #000, | |||
-1.5px 1.5px 0 #000, | |||
1.5px 1.5px 0 #000, | |||
-1.5px 0 0 #000, | |||
1.5px 0 0 #000, | |||
0 -1.5px 0 #000, | |||
0 1.5px 0 #000, | |||
0 0 10px rgba(0,0,0,0.7); | |||
} | } | ||
| Line 91: | Line 100: | ||
.cat-overlay { | .cat-overlay { | ||
font-size: 1em; | font-size: 1em; | ||
- | text-shadow: | ||
text- | -1px -1px 0 #000, | ||
1px -1px 0 #000, | |||
-1px 1px 0 #000, | |||
1px 1px 0 #000, | |||
-1px 0 0 #000, | |||
1px 0 0 #000, | |||
0 -1px 0 #000, | |||
0 1px 0 #000, | |||
0 0 5px rgba(0,0,0,0.5); | |||
} | |||
.cat-button:hover .cat-overlay { | |||
text-shadow: | |||
-1.2px -1.2px 0 #000, | |||
1.2px -1.2px 0 #000, | |||
-1.2px 1.2px 0 #000, | |||
1.2px 1.2px 0 #000, | |||
-1.2px 0 0 #000, | |||
1.2px 0 0 #000, | |||
0 -1.2px 0 #000, | |||
0 1.2px 0 #000, | |||
0 0 8px rgba(0,0,0,0.6); | |||
} | } | ||
} | } | ||
Revision as of 10:39, 16 November 2025
/* ---------- IMAGE-ONLY BUTTONS – CLEAN TEXT OUTLINE (NO STROKE) ---------- */
.cat-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 24px;
max-width: 960px;
margin: 30px auto;
padding: 0 12px;
}
/* DIV button – FULL RESET + ROUNDED */
.cat-button {
position: relative;
display: block !important;
line-height: 0 !important;
margin: 0 !important;
padding: 0 !important;
border: none !important;
border-radius: 10px !important;
background: none !important;
box-shadow: none !important;
overflow: hidden !important;
transition: transform 0.25s ease;
cursor: pointer;
}
/* HOVER: lift */
.cat-button:hover,
.cat-button:focus {
transform: translateY(-4px);
outline: none !important;
}
/* IMAGE: zoom on hover */
.cat-button img {
width: 100%;
height: auto;
display: block;
margin: 0;
padding: 0;
border: 0;
border-radius: 10px;
vertical-align: top;
transition: transform 0.3s ease;
}
.cat-button:hover img {
transform: scale(1.08);
}
/* TEXT OVERLAY: BOLD + CLEAN BLACK OUTLINE (via shadow) */
.cat-overlay {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 700 !important;
font-size: 1.1em;
text-align: center;
padding: 8px;
pointer-events: none;
background: rgba(0, 0, 0, 0.08);
border-radius: 10px;
transition: background 0.3s ease, text-shadow 0.3s ease;
/* CLEAN BLACK OUTLINE – NO STROKE ARTIFACTS */
text-shadow:
-1.2px -1.2px 0 #000,
1.2px -1.2px 0 #000,
-1.2px 1.2px 0 #000,
1.2px 1.2px 0 #000,
-1.2px 0 0 #000,
1.2px 0 0 #000,
0 -1.2px 0 #000,
0 1.2px 0 #000,
0 0 6px rgba(0,0,0,0.6); /* soft glow */
}
/* HOVER: remove tint + stronger outline glow */
.cat-button:hover .cat-overlay {
background: transparent;
text-shadow:
-1.5px -1.5px 0 #000,
1.5px -1.5px 0 #000,
-1.5px 1.5px 0 #000,
1.5px 1.5px 0 #000,
-1.5px 0 0 #000,
1.5px 0 0 #000,
0 -1.5px 0 #000,
0 1.5px 0 #000,
0 0 10px rgba(0,0,0,0.7);
}
/* RESPONSIVE */
@media (max-width: 768px) {
.cat-grid { gap: 16px; }
.cat-overlay {
font-size: 1em;
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000,
-1px 0 0 #000,
1px 0 0 #000,
0 -1px 0 #000,
0 1px 0 #000,
0 0 5px rgba(0,0,0,0.5);
}
.cat-button:hover .cat-overlay {
text-shadow:
-1.2px -1.2px 0 #000,
1.2px -1.2px 0 #000,
-1.2px 1.2px 0 #000,
1.2px 1.2px 0 #000,
-1.2px 0 0 #000,
1.2px 0 0 #000,
0 -1.2px 0 #000,
0 1.2px 0 #000,
0 0 8px rgba(0,0,0,0.6);
}
}