mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
50 lines
979 B
CSS
50 lines
979 B
CSS
.image-container {
|
|
position: relative;
|
|
display: inline-block;
|
|
max-height: 150px;
|
|
max-width: 200px;
|
|
}
|
|
|
|
/* Estilo de la imagen */
|
|
.image-container img {
|
|
max-width: 150px;
|
|
max-height: 150px;
|
|
}
|
|
|
|
/* Pseudo-elemento que muestra el tick */
|
|
.image-container.selected::after {
|
|
content: '✔'; /* Símbolo de tick */
|
|
position: absolute;
|
|
top: 90px;
|
|
right: 25px;
|
|
font-size: 50px;
|
|
font-weight: bold;
|
|
color: green;
|
|
background-color: rgba(255, 255, 255, 0);
|
|
border-radius: 100%;
|
|
padding: 5px;
|
|
}
|
|
|
|
.image-presupuesto {
|
|
transition: transform 1s ease;
|
|
}
|
|
|
|
.image-presupuesto.selected {
|
|
--webkit-transform: rotateY(360deg);
|
|
--webkit-transform-style: preserve-3d;
|
|
|
|
transform: rotateY(360deg);
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
.checkbox-presupuesto-container {
|
|
width: 110px !important;
|
|
max-width: 110px !important;
|
|
min-width: 110px !important;
|
|
}
|
|
|
|
.min-width-fit {
|
|
min-width: fit-content !important;
|
|
}
|
|
|