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