mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
cargando presupuesto datos generales
This commit is contained in:
@ -1,7 +1,11 @@
|
||||
.image-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
max-height: 150px;
|
||||
max-width: 200px;
|
||||
}
|
||||
|
||||
@ -13,19 +17,19 @@
|
||||
|
||||
/* Pseudo-elemento que muestra el tick */
|
||||
.image-container.selected::after {
|
||||
content: '✔';
|
||||
/* Símbolo de tick */
|
||||
content: '✔'; /* Símbolo de tick */
|
||||
position: absolute;
|
||||
top: 90px;
|
||||
right: 25px;
|
||||
top: calc(50% + 5px);
|
||||
left: calc(100%/2 + 65px); /* Mueve 75px a la derecha fuera del contenedor */
|
||||
font-size: 50px;
|
||||
font-weight: bold;
|
||||
color: green;
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
background-color: rgba(255, 255, 255, 0); /* Fondo transparente */
|
||||
border-radius: 100%;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
|
||||
.image-presupuesto {
|
||||
transition: transform 1s ease;
|
||||
}
|
||||
@ -88,17 +92,28 @@
|
||||
color: var(--fg);
|
||||
font: 1em/1.5 sans-serif;
|
||||
height: 100vh;
|
||||
position: fixed; /* Fijo para cubrir la pantalla */
|
||||
left: 50%; /* Centramos horizontalmente */
|
||||
top: 50%; /* Centramos verticalmente */
|
||||
transform: translate(-50%, -50%); /* Ajuste para centrar el loader */
|
||||
width: auto; /* Se ajusta automáticamente */
|
||||
height: auto; /* Se ajusta automáticamente */
|
||||
z-index: 9999; /* Mantener por encima de otros elementos */
|
||||
display: flex; /* Para centrar contenido */
|
||||
justify-content: center; /* Centrar horizontalmente */
|
||||
align-items: center; /* Centrar verticalmente */
|
||||
background-color: rgba(255, 255, 255, 0); /* Fondo completamente transparente */
|
||||
position: fixed;
|
||||
/* Fijo para cubrir la pantalla */
|
||||
left: 50%;
|
||||
/* Centramos horizontalmente */
|
||||
top: 50%;
|
||||
/* Centramos verticalmente */
|
||||
transform: translate(-50%, -50%);
|
||||
/* Ajuste para centrar el loader */
|
||||
width: auto;
|
||||
/* Se ajusta automáticamente */
|
||||
height: auto;
|
||||
/* Se ajusta automáticamente */
|
||||
z-index: 9999;
|
||||
/* Mantener por encima de otros elementos */
|
||||
display: flex;
|
||||
/* Para centrar contenido */
|
||||
justify-content: center;
|
||||
/* Centrar horizontalmente */
|
||||
align-items: center;
|
||||
/* Centrar verticalmente */
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
/* Fondo completamente transparente */
|
||||
}
|
||||
|
||||
.book,
|
||||
|
||||
Reference in New Issue
Block a user