Widget:AddonsStyle: mudanças entre as edições
Ir para navegação
Ir para pesquisar
Sem resumo de edição |
Sem resumo de edição |
||
Linha 1: | Linha 1: | ||
<style> | <style> | ||
body { | |||
margin: 0; | |||
padding: 0; | |||
height: 100vh; /* Garante que o body ocupe toda a altura da tela */ | |||
display: | display: flex; | ||
justify-content: center; /* Centraliza o conteúdo horizontalmente */ | |||
align-items: center; /* Centraliza o conteúdo verticalmente */ | |||
background-color: #f4f4f4; /* Fundo suave */ | |||
} | } | ||
.input-group { | |||
margin-bottom: 1em; | |||
position: relative; | |||
width: 100%; | |||
max-width: 400px; /* Largura máxima do input */ | |||
text-align: center; | |||
} | |||
#imageSearch { | #imageSearch { | ||
width: | width: 100%; /* Faz o input ocupar toda a largura disponível */ | ||
padding: 12px 15px; | padding: 12px 15px; | ||
font-size: 18px; | font-size: 18px; | ||
border-radius: 14px; | border-radius: 14px; | ||
border: 1px solid #ccc; | border: 1px solid #ccc; | ||
background-color: #f9f9f9; | background-color: #f9f9f9; | ||
transition: all 0.3s ease; | transition: all 0.3s ease; | ||
} | } | ||
#imageSearch:focus { | #imageSearch:focus { | ||
border-color: #007bff; | border-color: #007bff; | ||
background-color: #f2e8f8; | background-color: #f2e8f8; | ||
outline: none; | outline: none; | ||
} | } | ||
#dropdown { | #dropdown { | ||
position: absolute; | position: absolute; | ||
top: 100%; /* Coloca o dropdown abaixo do input */ | top: 100%; /* Coloca o dropdown abaixo do input */ | ||
left: 0; | left: 0; | ||
width: | width: 100%; /* Faz o dropdown ter a mesma largura do input */ | ||
max-height: 300px; | max-height: 300px; | ||
overflow-y: auto; | overflow-y: auto; | ||
Linha 102: | Linha 61: | ||
.dropdown-item img { | .dropdown-item img { | ||
margin-right: 10px; | margin-right: 10px; | ||
} | } | ||
.image-container { | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
justify-content: center; | |||
} | |||
.image-item { | |||
margin-bottom: 1em; | |||
text-align: center; | |||
} | |||
.image-item img { | |||
display: block; | |||
margin: 0 auto; | |||
} | |||
.variations-container { | |||
display: flex; | |||
flex-wrap: wrap; | |||
justify-content: center; | |||
margin-top: 1em; | |||
} | |||
.variation-item { | |||
width: 35%; | |||
box-sizing: border-box; | |||
margin: 5px; | |||
text-align: center; | |||
border: 1px solid; | |||
padding: 10px; | |||
} | |||
.variation-item img { | |||
display: block; | |||
margin: 0 auto 10px; | |||
} | |||
.swap-button { | |||
margin-top: 10px; | |||
cursor: pointer; | |||
width: 15px; | |||
height: 15px; | |||
background: url('https://wiki.pokexgames.com/images/f/fb/SwapButtonAddons.png') no-repeat center; | |||
background-size: contain; | |||
display: block; | |||
margin: 0 auto; | |||
} | |||
</style> | </style> |
Edição das 23h33min de 23 de dezembro de 2024
<style> body {
margin: 0; padding: 0; height: 100vh; /* Garante que o body ocupe toda a altura da tela */ display: flex; justify-content: center; /* Centraliza o conteúdo horizontalmente */ align-items: center; /* Centraliza o conteúdo verticalmente */ background-color: #f4f4f4; /* Fundo suave */
}
.input-group {
margin-bottom: 1em; position: relative; width: 100%; max-width: 400px; /* Largura máxima do input */ text-align: center;
}
- imageSearch {
width: 100%; /* Faz o input ocupar toda a largura disponível */ padding: 12px 15px; font-size: 18px; border-radius: 14px; border: 1px solid #ccc; background-color: #f9f9f9; transition: all 0.3s ease;
}
- imageSearch:focus {
border-color: #007bff; background-color: #f2e8f8; outline: none;
}
- dropdown {
position: absolute; top: 100%; /* Coloca o dropdown abaixo do input */ left: 0; width: 100%; /* Faz o dropdown ter a mesma largura do input */ max-height: 300px; overflow-y: auto; background-color: white; border-radius: 14px; border: 1px solid #ccc; display: none; /* Inicialmente invisível */ box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); z-index: 10;
}
.dropdown-item {
padding: 10px; cursor: pointer; display: flex; align-items: center;
}
.dropdown-item:hover {
background-color: #f1f1f1;
}
.dropdown-item img {
margin-right: 10px;
}
.image-container {
display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.image-item {
margin-bottom: 1em; text-align: center;
}
.image-item img {
display: block; margin: 0 auto;
}
.variations-container {
display: flex; flex-wrap: wrap; justify-content: center; margin-top: 1em;
}
.variation-item {
width: 35%; box-sizing: border-box; margin: 5px; text-align: center; border: 1px solid; padding: 10px;
}
.variation-item img {
display: block; margin: 0 auto 10px;
}
.swap-button {
margin-top: 10px; cursor: pointer; width: 15px; height: 15px; background: url('https://wiki.pokexgames.com/images/f/fb/SwapButtonAddons.png') no-repeat center; background-size: contain; display: block; margin: 0 auto;
}
</style>