Auto commit: 2026-02-16T21:08:16.570Z

This commit is contained in:
Flatlogic Bot 2026-02-16 21:08:16 +00:00
parent 7ed45f9e5c
commit 857ed25b65

View File

@ -36,8 +36,8 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
:root {
--accent-color: #00c853; /* Refined Green */
--primary-color: #38bdf8; /* Vibrant Blue */
--bg-overlay: rgba(0, 0, 0, 0.25); /* Lighter overlay for more visibility */
--glass-bg: rgba(255, 255, 255, 0.08); /* Even more transparent glass */
--bg-overlay: rgba(0, 0, 0, 0.15); /* Even lighter for maximum transparency */
--glass-bg: rgba(255, 255, 255, 0.03); /* Almost invisible glass */
--glass-border: rgba(255, 255, 255, 0.2);
}
@ -102,8 +102,8 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
.glass-card {
background: var(--glass-bg);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
border: 2px solid transparent;
border-radius: 32px;
padding: 2.5rem;
@ -192,7 +192,7 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
display: flex;
align-items: center;
gap: 1.2rem;
background: rgba(255, 255, 255, 0.05);
background: rgba(255, 255, 255, 0.02);
padding: 1.2rem;
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.1);
@ -503,7 +503,7 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
padding: 0.8rem;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.2);
background-color: rgba(255, 255, 255, 0.1); /* Transparent glass */
background-color: rgba(255, 255, 255, 0.05); /* Even more transparent */
color: #ffffff;
font-family: inherit;
font-size: 0.95rem;
@ -584,7 +584,7 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
width: 220px;
height: 220px;
margin: 1rem auto;
background: rgba(255, 255, 255, 0.1);
background: rgba(255, 255, 255, 0.05);
border-radius: 12px;
display: flex;
flex-direction: column;
@ -960,7 +960,7 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
</button>
<div id="photo-limit-msg" style="display: none; position: absolute; bottom: -20px; left: 0; width: 100%; text-align: center; font-size: 0.65rem; color: #ff4444; font-weight: bold; animation: fadeIn 0.3s;"></div>
<input type="file" id="chat-file" style="display: none;" accept="image/*" onchange="uploadImage(this)">
<input type="text" id="chat-msg" placeholder="Escribe un mensaje..." style="flex: 1; font-size: 0.8rem; padding: 0.5rem; border-radius: 8px; border: none; background: rgba(255,255,255,0.1); color: white;">
<input type="text" id="chat-msg" placeholder="Escribe un mensaje..." style="flex: 1; font-size: 0.8rem; padding: 0.5rem; border-radius: 8px; border: none; background: rgba(255,255,255,0.05); color: white;">
<button onclick="sendChatMessage()" style="background: var(--primary-color); border: none; border-radius: 8px; color: white; padding: 0 1rem; cursor: pointer;">
<i class="bi bi-send-fill"></i>
</button>