añadidos los ficheros

This commit is contained in:
2024-09-30 08:38:22 +02:00
parent 69b27f0cd8
commit cb982bd38a
21 changed files with 4653 additions and 0 deletions

View File

@ -0,0 +1,39 @@
.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;
}