Wykrywanie i blokada po lokalizacji
This commit is contained in:
@@ -62,6 +62,44 @@ body {
|
||||
min-height: 20px;
|
||||
}
|
||||
|
||||
#geoScreen {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 150;
|
||||
background: var(--bg);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 40px;
|
||||
text-align: center;
|
||||
transition: opacity 0.5s ease, visibility 0.5s;
|
||||
}
|
||||
|
||||
.geo-icon {
|
||||
font-size: 80px;
|
||||
margin-bottom: 16px;
|
||||
animation: bounce 2s infinite;
|
||||
}
|
||||
|
||||
@keyframes bounce {
|
||||
0%, 100% { transform: translateY(0); }
|
||||
50% { transform: translateY(-15px); }
|
||||
}
|
||||
|
||||
.geo-text h2 {
|
||||
font-family: 'Playfair Display', serif;
|
||||
margin: 0 0 12px;
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
.geo-msg {
|
||||
color: var(--text-muted);
|
||||
font-size: 15px;
|
||||
line-height: 1.5;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
/* --- MAIN LAYOUT --- */
|
||||
.container {
|
||||
max-width: 500px;
|
||||
|
||||
Reference in New Issue
Block a user