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: | ||
body { | |||
font-family: Arial, sans-serif; | |||
background-color: #f0f0f0; | |||
margin: 0; | |||
padding: 20px; | |||
} | |||
.input-group { | |||
position: relative; | |||
width: 100%; | |||
} | |||
#imageSearch { | |||
width: 100%; | |||
padding: 10px; | |||
font-size: 16px; | |||
border-radius: 5px; | |||
border: 1px solid #ccc; | border: 1px solid #ccc; | ||
} | |||
#dropdown { | |||
position: absolute; | position: absolute; | ||
background-color: # | top: 100%; | ||
max-height: | left: 0; | ||
right: 0; | |||
background-color: white; | |||
border: 1px solid #ccc; | |||
border-radius: 5px; | |||
max-height: 200px; | |||
overflow-y: auto; | overflow-y: auto; | ||
display: none; | |||
z-index: 10; | |||
} | } | ||
.dropdown-item { | |||
padding: 10px; | |||
display: flex; | |||
align-items: center; | |||
cursor: pointer; | |||
} | |||
.dropdown-item img { | |||
width: 40px; | |||
height: 40px; | |||
margin-right: 10px; | |||
} | |||
.image-container { | |||
margin-top: 20px; | |||
display: none; | |||
} | |||
.variation-item { | |||
display: flex; | |||
align-items: center; | |||
margin-bottom: 10px; | |||
} | |||
.variation-image { | |||
width: 100px; | |||
height: 100px; | |||
margin-right: 10px; | |||
transition: all 0.3s ease; | |||
} | |||
.swap-button { | |||
cursor: pointer; | |||
margin-left: 10px; | |||
background-color: #007bff; | |||
color: white; | |||
padding: 5px 10px; | |||
border-radius: 5px; | |||
} | |||
.image-info { | |||
margin-left: 10px; | |||
} |
Edição das 23h19min de 23 de dezembro de 2024
body {
font-family: Arial, sans-serif; background-color: #f0f0f0; margin: 0; padding: 20px;
}
.input-group {
position: relative; width: 100%;
}
- imageSearch {
width: 100%; padding: 10px; font-size: 16px; border-radius: 5px; border: 1px solid #ccc;
}
- dropdown {
position: absolute; top: 100%; left: 0; right: 0; background-color: white; border: 1px solid #ccc; border-radius: 5px; max-height: 200px; overflow-y: auto; display: none; z-index: 10;
}
.dropdown-item {
padding: 10px; display: flex; align-items: center; cursor: pointer;
}
.dropdown-item img {
width: 40px; height: 40px; margin-right: 10px;
}
.image-container {
margin-top: 20px; display: none;
}
.variation-item {
display: flex; align-items: center; margin-bottom: 10px;
}
.variation-image {
width: 100px; height: 100px; margin-right: 10px; transition: all 0.3s ease;
}
.swap-button {
cursor: pointer; margin-left: 10px; background-color: #007bff; color: white; padding: 5px 10px; border-radius: 5px;
}
.image-info {
margin-left: 10px;
}