2.0.3
Data popup & spinner
This commit is contained in:
@@ -615,6 +615,47 @@
|
||||
border: 1.5px solid #c9b08a;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
/* acquiring-data popup overlay */
|
||||
.acquiring-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(0, 0, 0, 0.45);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 9999;
|
||||
}
|
||||
.acquiring-popup {
|
||||
background: #fdf8ee;
|
||||
border: 1.5px solid #c9b08a;
|
||||
border-radius: 10px;
|
||||
padding: 32px 40px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 18px;
|
||||
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
|
||||
}
|
||||
.acquiring-spinner {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border: 3px solid #c9b08a;
|
||||
border-top-color: #7a5c2a;
|
||||
border-radius: 50%;
|
||||
animation: acquiring-spin 0.8s linear infinite;
|
||||
}
|
||||
@keyframes acquiring-spin {
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
.acquiring-label {
|
||||
font-family: Manrope, sans-serif;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.07em;
|
||||
text-transform: uppercase;
|
||||
color: #7a5c2a;
|
||||
}
|
||||
.utci-fetch-time {
|
||||
text-align: right;
|
||||
font-size: 0.72rem;
|
||||
|
||||
Reference in New Issue
Block a user