Mudanças entre as edições de "Widget:MainPageIndex"

De Wiki Gla
Ir para navegação Ir para pesquisar
m
m
Linha 1: Linha 1:
<style>
<style>
/* mesma largura do resto (caso teu grid use flex:1 1 48%) */
.index-grid .disabled-section {
.index-grid .disabled-section {
position: relative;
position: relative;
Linha 7: Linha 6:
}
}


/* faixa “EM BREVE” centralizada */
.index-grid .disabled-section::after {
.index-grid .disabled-section::after {
content: "EM BREVE";
content: "EM BREVE";
Linha 14: Linha 12:
left: 50%;
left: 50%;
transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
font-size: 1.4em;
font-size: 1.6em;
font-weight: bold;
font-weight: 900;
color: #ffffff;
color: #fff;
text-shadow: 0 0 6px #000;
background-color: rgba(0, 0, 0, 0.5);
padding: 6px 12px;
border-radius: 8px;
text-shadow: 0 0 4px #000, 0 0 6px #000;
backdrop-filter: blur(2px);
pointer-events: none;
pointer-events: none;
z-index: 1;
}
}


/* links cinza (ainda clicáveis) */
.index-grid .disabled-section .index-links a {
.index-grid .disabled-section .index-links a {
color: #d0d0d0;
color: #d0d0d0;

Edição das 21h46min de 26 de junho de 2025

<style> .index-grid .disabled-section { position: relative; filter: grayscale(100%) contrast(60%); opacity: .65; }

.index-grid .disabled-section::after { content: "EM BREVE"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 1.6em; font-weight: 900; color: #fff; background-color: rgba(0, 0, 0, 0.5); padding: 6px 12px; border-radius: 8px; text-shadow: 0 0 4px #000, 0 0 6px #000; backdrop-filter: blur(2px); pointer-events: none; z-index: 1; }

.index-grid .disabled-section .index-links a { color: #d0d0d0; text-decoration: none; } </style>