Index Of Mujhse Shaadi Karogi -
.btn-no background: #6c757d; color: white; box-shadow: 0 6px 0 #3e444a; position: relative; .btn-no:hover background: #7e8892;
.gif-placeholder font-size: 3rem; margin-bottom: 8px;
h1 font-size: 2.6rem; font-weight: bold; background: linear-gradient(135deg, #b62b4b, #ff8c9e); background-clip: text; -webkit-background-clip: text; color: transparent; margin: 0.5rem 0 0.2rem; letter-spacing: -0.5px;
<div class="proposal-card" id="proposalCard"> <div class="heart-icon">💖💍💖</div> <div class="proposer-pic"> <span>🥰✨</span> </div> <h1>Mujhse Shaadi Karogi?</h1> <div class="subhead">💞 My heart beats only for you 💞</div> index of mujhse shaadi karogi
.proposal-card max-width: 550px; width: 100%; background: rgba(255, 255, 255, 0.96); border-radius: 56px; box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(255, 215, 0, 0.3); overflow: hidden; transition: all 0.2s ease; backdrop-filter: blur(1px); text-align: center; padding: 2rem 1.8rem 2.5rem;
.buttons display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; margin: 1.5rem 0 1rem;
// ---------- Attach events ---------- yesBtn.addEventListener('click', onYes); noBtn.addEventListener('click', handleNoClick); // additional hover effect for yes button yesBtn.addEventListener('mouseenter', () => if(!yesBtn.disabled) yesBtn.style.transform = 'scale(1.02)'; ); yesBtn.addEventListener('mouseleave', () => yesBtn.style.transform = ''; ); // preload fun message: optional but nice. setTimeout(() => const msg = "💕 Your answer? I'll wait for eternity... 💕"; if(!yesBtn.disabled) messagePara.innerHTML = msg; , 1000); // small fallback to keep no button from going out of container setInterval(() => if(noBtn.style.position === 'absolute' && !yesBtn.disabled) const container = document.querySelector('.buttons'); if(container) const maxLeft = container.clientWidth - noBtn.offsetWidth - 8; const maxTop = container.clientHeight - noBtn.offsetHeight - 5; let leftNow = parseFloat(noBtn.style.left); let topNow = parseFloat(noBtn.style.top); if (isNaN(leftNow)) leftNow = 10; if (isNaN(topNow)) topNow = 10; if (leftNow > maxLeft) noBtn.style.left = Math.max(5, maxLeft - 5) + 'px'; if (topNow > maxTop) noBtn.style.top = Math.max(2, maxTop - 4) + 'px'; if (leftNow < 2) noBtn.style.left = '8px'; if (topNow < 2) noBtn.style.top = '8px'; , 500); )(); 💕"; if(
.btn border: none; font-size: 1.35rem; font-weight: 600; padding: 0.9rem 1.8rem; border-radius: 60px; cursor: pointer; transition: 0.2s; font-family: inherit; display: inline-flex; align-items: center; gap: 12px; box-shadow: 0 5px 0 rgba(0,0,0,0.1);
.question background: #fff2f4; border-radius: 60px; padding: 0.7rem 1rem; font-size: 1.8rem; font-weight: bold; color: #a13046; margin: 1.2rem 0 1.5rem; box-shadow: inset 0 0 0 1px white, 0 6px 12px rgba(0,0,0,0.05);
.heart-icon font-size: 4.2rem; animation: pulse 1.5s infinite ease; display: inline-block; margin-bottom: 0.5rem; if(!yesBtn.disabled) messagePara.innerHTML = msg
.glow animation: happyGlow 0.6s ease-out; @keyframes happyGlow 0% background: #fff7e0; box-shadow: 0 0 0 0 #ffccaa; 100% background: #fff0f2; </style> </head> <body>
// ---------- YES BUTTON HANDLER (main event) ---------- function onYes() if(yesBtn.disabled) return; // already accepted showAcceptance();
<script> (function() // ----- DOM elements ----- const yesBtn = document.getElementById('yesBtn'); const noBtn = document.getElementById('noBtn'); const responseDiv = document.getElementById('responseArea'); const messagePara = document.getElementById('messageText'); const gifSpan = document.querySelector('#responseArea .gif-placeholder'); const card = document.getElementById('proposalCard'); const questionDiv = document.getElementById('questionText');
.btn-yes background: #e8436e; color: white; box-shadow: 0 6px 0 #962d48; .btn-yes:hover background: #ff4d7a; transform: scale(1.02);
@media (max-width: 480px) .proposal-card padding: 1.5rem; h1 font-size: 2rem; .question font-size: 1.4rem; .btn padding: 0.7rem 1.2rem; font-size: 1.1rem;