-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
35 lines (32 loc) · 1.29 KB
/
global.css
File metadata and controls
35 lines (32 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#globalPopup {
position: fixed; top: 50%; left: 50%;
transform: translate(-50%, -50%) scale(0.7);
background: white; border-radius: 15px;
padding: 25px; width: 320px; text-align: center;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
opacity: 0; pointer-events: none; transition: 0.25s ease;
z-index: 999999;
}
#globalPopup.show { opacity: 1; transform: translate(-50%, -50%) scale(1); pointer-events: auto; }
#popupOverlay {
position: fixed; inset: 0; background: rgba(0,0,0,0.45);
backdrop-filter: blur(6px); opacity: 0; transition: 0.25s ease;
pointer-events: none; z-index: 999998;
}
#popupOverlay.show { opacity: 1; pointer-events: auto; }
#networkAnim {
width: 70px; height: 70px; margin: 0 auto 10px;
border-radius: 50%; border: 6px solid #999; border-top-color: red;
animation: spin 1s linear infinite; display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
#loaderOverlay {
position: fixed; inset: 0; backdrop-filter: blur(10px);
background: rgba(0,0,0,0.4); z-index: 999999;
display: flex; align-items: center; justify-content: center;
opacity: 1; transition: opacity 0.4s;
}
.loader { width: 55px; height: 55px; border: 6px solid #fff;
border-top-color: #4755ed; border-radius: 50%;
animation: spin 0.8s linear infinite;
}