Mudanças entre as edições de "Widget:WeeklyBosses"
Ir para navegação
Ir para pesquisar
(Criou página com '<style> .weekly-bosses { font-family: "Segoe UI", Arial, sans-serif; display: flex; flex-wrap: wrap; gap: 12px; justify-content: ce...') |
m |
||
| Linha 44: | Linha 44: | ||
image-rendering: -moz-crisp-edges; | image-rendering: -moz-crisp-edges; | ||
image-rendering: crisp-edges; | image-rendering: crisp-edges; | ||
} | } | ||
| Linha 61: | Linha 56: | ||
} | } | ||
</style> | </style> | ||
Edição das 03h09min de 22 de fevereiro de 2026
<style>
.weekly-bosses {
font-family: "Segoe UI", Arial, sans-serif;
display: flex;
flex-wrap: wrap;
gap: 12px;
justify-content: center;
padding: 16px 0;
}
.weekly-bosses__btn {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
padding: 16px 20px;
min-width: 120px;
border: 1px solid #e67e22;
border-radius: 12px;
color: #e67e22;
font-weight: 600;
font-size: 14px;
text-decoration: none;
cursor: pointer;
transition: all 0.2s ease;
}
.weekly-bosses__btn:hover {
border-color: #f39c12;
color: #f39c12;
transform: translateY(-2px);
}
.weekly-bosses__btn:focus-visible {
outline: 2px solid #e67e22;
outline-offset: 2px;
}
.weekly-bosses__icon {
width: 48px;
height: 48px;
object-fit: contain;
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: crisp-edges;
}
@media (max-width: 600px) {
.weekly-bosses {
flex-direction: column;
}
.weekly-bosses__btn {
width: 100%;
}
}
</style>