mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
añadidos los ficheros
This commit is contained in:
39
httpdocs/themes/vuexy/css/presupuestoCliente.css
Normal file
39
httpdocs/themes/vuexy/css/presupuestoCliente.css
Normal 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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user