Auto commit: 2026-02-16T20:58:02.528Z

This commit is contained in:
Flatlogic Bot 2026-02-16 20:58:02 +00:00
parent f27cd563de
commit c82f9f67c8

View File

@ -34,10 +34,10 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
<style>
:root {
--accent-color: #00e676; /* WhatsApp Green */
--primary-color: #38bdf8; /* Sky Blue */
--bg-overlay: rgba(15, 23, 42, 0.5); /* More transparent overlay */
--glass-bg: rgba(15, 23, 42, 0.3); /* Transparent card background */
--accent-color: #00c853; /* Refined Green */
--primary-color: #38bdf8; /* Vibrant Blue */
--bg-overlay: rgba(0, 0, 0, 0.4); /* Darker overlay for text contrast */
--glass-bg: rgba(255, 255, 255, 0.1); /* Very transparent glass */
--glass-border: rgba(255, 255, 255, 0.2);
}
@ -48,7 +48,7 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
height: 100%;
font-family: 'Inter', sans-serif;
color: #ffffff;
background-color: #000;
background-color: transparent;
}
.background {
@ -142,6 +142,7 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
letter-spacing: -1px;
filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.3));
}
.brand-logo {
@ -242,8 +243,8 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
overflow: hidden;
text-overflow: ellipsis;
transition: color 0.05s ease, transform 0.05s ease, text-shadow 0.05s ease, opacity 0.5s ease;
color: #fff;
text-shadow: 0 0 15px var(--primary-color), 0 0 30px rgba(0,0,0,0.5);
color: #ffffff;
text-shadow: 0 0 15px rgba(56, 189, 248, 0.6);
display: block;
margin-top: 0.2rem;
will-change: color, transform, text-shadow;
@ -611,7 +612,7 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.9);
background: rgba(255,255,255,0.7);
backdrop-filter: blur(10px);
justify-content: center;
align-items: center;
@ -634,15 +635,15 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
transform: scale(0.7);
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
overflow: hidden;
box-shadow: 0 0 50px rgba(0, 230, 118, 0.6), 0 0 100px rgba(255, 255, 255, 0.1);
box-shadow: 0 0 50px rgba(0, 230, 118, 0.4), 0 0 100px rgba(0, 0, 0, 0.05);
animation: glow-color-change 8s infinite ease-in-out;
}
@keyframes glow-color-change {
0% { box-shadow: 0 0 50px rgba(0, 230, 118, 0.6), 0 0 100px rgba(255, 255, 255, 0.1); }
33% { box-shadow: 0 0 50px rgba(56, 189, 248, 0.6), 0 0 100px rgba(255, 255, 255, 0.1); }
66% { box-shadow: 0 0 50px rgba(244, 114, 182, 0.6), 0 0 100px rgba(255, 255, 255, 0.1); }
100% { box-shadow: 0 0 50px rgba(0, 230, 118, 0.6), 0 0 100px rgba(255, 255, 255, 0.1); }
0% { box-shadow: 0 0 50px rgba(0, 230, 118, 0.4), 0 0 100px rgba(0, 0, 0, 0.05); }
33% { box-shadow: 0 0 50px rgba(2, 132, 199, 0.4), 0 0 100px rgba(0, 0, 0, 0.05); }
66% { box-shadow: 0 0 50px rgba(244, 114, 182, 0.4), 0 0 100px rgba(0, 0, 0, 0.05); }
100% { box-shadow: 0 0 50px rgba(0, 230, 118, 0.4), 0 0 100px rgba(0, 0, 0, 0.05); }
}
.qr-modal-content::after {
@ -655,7 +656,7 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
background: linear-gradient(
120deg,
transparent,
rgba(255, 255, 255, 0.8),
rgba(0, 0, 0, 0.05),
transparent
);
transform: rotate(10deg);
@ -678,11 +679,12 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
.qr-modal-close {
position: absolute;
top: -40px;
right: 0;
color: white;
top: 10px;
right: 15px;
color: #1e293b;
font-size: 2rem;
cursor: pointer;
z-index: 10;
}
.qr-placeholder i {