MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary Tag: Manual revert |
No edit summary Tag: Reverted |
||
| Line 31: | Line 31: | ||
.product-subtitle { | .product-subtitle { | ||
display: block; | display: block; | ||
} | |||
/* Espaço para a seta manual */ | |||
.vector-toc-link { | |||
display: flex !important; | |||
align-items: center; | |||
} | |||
/* Criar a seta */ | |||
.toc-custom-chevron { | |||
cursor: pointer; | |||
margin-right: 8px; | |||
transition: transform 0.2s; | |||
user-select: none; | |||
font-weight: bold; | |||
color: #0645ad; | |||
} | |||
/* Rodar a seta quando estiver aberto */ | |||
.toc-custom-chevron.expanded { | |||
transform: rotate(90deg); | |||
} | } | ||
Revision as of 12:16, 13 March 2026
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 30px;
margin-top: 20px;
}
.product-item {
text-align: center;
}
.product-image {
display: block;
margin: 0 auto 10px;
}
.product-title {
font-weight: 600;
margin-top: 6px;
}
.product-subtitle {
font-size: 14px;
color: #666;
}
.product-item strong {
display: block;
}
.product-subtitle {
display: block;
}
/* Espaço para a seta manual */
.vector-toc-link {
display: flex !important;
align-items: center;
}
/* Criar a seta */
.toc-custom-chevron {
cursor: pointer;
margin-right: 8px;
transition: transform 0.2s;
user-select: none;
font-weight: bold;
color: #0645ad;
}
/* Rodar a seta quando estiver aberto */
.toc-custom-chevron.expanded {
transform: rotate(90deg);
}