Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Rename README.md to S.v saver vard#1564

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
shivamprajapatishivam702-hash wants to merge1 commit intocodecrafters-io:master
base:master
Choose a base branch
Loading
fromshivamprajapatishivam702-hash:patch-1

Conversation

shivamprajapatishivam702-hash
Copy link

@shivamprajapatishivam702-hashshivamprajapatishivam702-hash commentedSep 30, 2025
edited by cursorbot
Loading

<!doctype html>

<title>Satbeer — S.V Sarver Vard</title> <style> :root{ --bg:#0f1724; --card:#0b1220; --accent:#7dd3fc; --muted:#94a3b8; } *{box-sizing:border-box} body{ margin:0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", "Helvetica Neue", Arial; background: linear-gradient(180deg, #071021 0%, #0f1a2a 100%); color: #e6f0ff; min-height:100vh; display:flex; align-items:center; justify-content:center; padding:24px; } .card{ width:100%; max-width:720px; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border-radius:16px; padding:28px; box-shadow: 0 10px 30px rgba(2,6,23,0.6); border: 1px solid rgba(255,255,255,0.04); } header{ display:flex; gap:16px; align-items:center; } .avatar{ width:84px;height:84px;border-radius:12px; background: linear-gradient(135deg, #065f46, #0891b2); display:flex;align-items:center;justify-content:center; font-weight:700;font-size:32px;color:white; flex-shrink:0; box-shadow: 0 6px 18px rgba(3,7,18,0.6); } h1{ margin:0;font-size:32px;letter-spacing:0.6px; } p.subtitle{ margin:4px 0 0 0;color:var(--muted); font-size:14px; } .controls{ margin-top:20px;display:flex;gap:10px;flex-wrap:wrap; } button{ background:transparent;border:1px solid rgba(255,255,255,0.08); padding:10px 14px;border-radius:10px;color:inherit; cursor:pointer;font-weight:600; transition:all .18s ease; backdrop-filter: blur(6px); } button.primary{ background:linear-gradient(90deg,#0891b2,#06b6d4); color:#041322;border:0; box-shadow: 0 8px 20px rgba(3,7,18,0.5); } button:hover{transform:translateY(-3px)} .meta{ margin-top:18px;color:var(--muted);font-size:13px; }
/* responsive adjustments */@media (max-width:420px){  header{gap:12px}  .avatar{width:64px;height:64px;font-size:26px}  h1{font-size:24px}}
</style>
S

Satbeer

S.V Sarver Vard

<div>  <button>नाम बदलो / Edit Name</button>  <button>Copy Name</button>  <button>Download as TXT</button></div><p>  यह छोटा पेज मोबाइल-फ़्रेंडली है — "Edit Name" से नाम बदल सकते हो, "Copy Name" से clipboard में चले जाएगा, और "Download as TXT" से नाम की फ़ाइल बनाकर डाउनलोड कर लो।</p>
<script> const mainName = document.getElementById('mainName'); const subName = document.getElementById('subName'); const avatar = document.getElementById('avatar'); const editBtn = document.getElementById('editBtn'); const copyBtn = document.getElementById('copyBtn'); const downloadBtn = document.getElementById('downloadBtn'); function updateAvatarLetter(){ const txt = mainName.textContent.trim(); avatar.textContent = txt ? txt[0].toUpperCase() : 'S'; } updateAvatarLetter(); editBtn.addEventListener('click', () => { const newMain = prompt('मुख्य नाम डालो (example: Satbeer):', mainName.textContent) || mainName.textContent; const newSub = prompt('छोटा टेक्स्ट डालो (example: S.V Sarver Vard):', subName.textContent) || subName.textContent; mainName.textContent = newMain.trim(); subName.textContent = newSub.trim(); updateAvatarLetter(); }); copyBtn.addEventListener('click', async () => { const text = mainName.textContent + ' — ' + subName.textContent; try{ await navigator.clipboard.writeText(text); alert('नाम clipboard में copy हुआ:\n' + text); }catch(e){ // fallback const ta = document.createElement('textarea'); ta.value = text; document.body.appendChild(ta); ta.select(); document.execCommand('copy'); ta.remove(); alert('Copied (fallback): ' + text); } }); downloadBtn.addEventListener('click', () => { const text = mainName.textContent + ' - ' + subName.textContent; const blob = new Blob([text], {type:'text/plain;charset=utf-8'}); const url = URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = (mainName.textContent || 'name') + '.txt'; document.body.appendChild(a); a.click(); a.remove(); URL.revokeObjectURL(url); }); </script>

Note

No file changes in this PR; the diff is empty.

Written byCursor Bugbot for commit38bfe2e. This will update automatically on new commits. Configurehere.

<!doctype html><html lang="hi"><head>  <meta charset="utf-8" />  <meta name="viewport" content="width=device-width, initial-scale=1" />  <title>Satbeer — S.V Sarver Vard</title>  <style>    :root{      --bg:#0f1724;      --card:#0b1220;      --accent:#7dd3fc;      --muted:#94a3b8;    }    *{box-sizing:border-box}    body{      margin:0;      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", "Helvetica Neue", Arial;      background: linear-gradient(180deg, #071021 0%, #0f1a2a 100%);      color: #e6f0ff;      min-height:100vh;      display:flex;      align-items:center;      justify-content:center;      padding:24px;    }    .card{      width:100%;      max-width:720px;      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));      border-radius:16px;      padding:28px;      box-shadow: 0 10px 30px rgba(2,6,23,0.6);      border: 1px solid rgba(255,255,255,0.04);    }    header{      display:flex;      gap:16px;      align-items:center;    }    .avatar{      width:84px;height:84px;border-radius:12px;      background: linear-gradient(135deg, #065f46, #0891b2);      display:flex;align-items:center;justify-content:center;      font-weight:700;font-size:32px;color:white;      flex-shrink:0;      box-shadow: 0 6px 18px rgba(3,7,18,0.6);    }    h1{      margin:0;font-size:32px;letter-spacing:0.6px;    }    p.subtitle{      margin:4px 0 0 0;color:var(--muted);      font-size:14px;    }    .controls{      margin-top:20px;display:flex;gap:10px;flex-wrap:wrap;    }    button{      background:transparent;border:1px solid rgba(255,255,255,0.08);      padding:10px 14px;border-radius:10px;color:inherit;      cursor:pointer;font-weight:600;      transition:all .18s ease;      backdrop-filter: blur(6px);    }    button.primary{      background:linear-gradient(90deg,#0891b2,#06b6d4);      color:#041322;border:0;      box-shadow: 0 8px 20px rgba(3,7,18,0.5);    }    button:hover{transform:translateY(-3px)}    .meta{      margin-top:18px;color:var(--muted);font-size:13px;    }    /* responsive adjustments */@media (max-width:420px){      header{gap:12px}      .avatar{width:64px;height:64px;font-size:26px}      h1{font-size:24px}    }  </style></head><body>  <div role="main">    <header>      <div>S</div>      <div>        <h1>Satbeer</h1>        <p>S.V Sarver Vard</p>      </div>    </header>    <div>      <button>नाम बदलो / Edit Name</button>      <button>Copy Name</button>      <button>Download as TXT</button>    </div>    <p>      यह छोटा पेज मोबाइल-फ़्रेंडली है — "Edit Name" से नाम बदल सकते हो, "Copy Name" से clipboard में चले जाएगा, और "Download as TXT" से नाम की फ़ाइल बनाकर डाउनलोड कर लो।    </p>  </div>  <script>    const mainName = document.getElementById('mainName');    const subName = document.getElementById('subName');    const avatar = document.getElementById('avatar');    const editBtn = document.getElementById('editBtn');    const copyBtn = document.getElementById('copyBtn');    const downloadBtn = document.getElementById('downloadBtn');    function updateAvatarLetter(){      const txt = mainName.textContent.trim();      avatar.textContent = txt ? txt[0].toUpperCase() : 'S';    }    updateAvatarLetter();    editBtn.addEventListener('click', () => {      const newMain = prompt('मुख्य नाम डालो (example: Satbeer):', mainName.textContent) || mainName.textContent;      const newSub  = prompt('छोटा टेक्स्ट डालो (example: S.V Sarver Vard):', subName.textContent) || subName.textContent;      mainName.textContent = newMain.trim();      subName.textContent = newSub.trim();      updateAvatarLetter();    });    copyBtn.addEventListener('click', async () => {      const text = mainName.textContent + ' — ' + subName.textContent;      try{        await navigator.clipboard.writeText(text);        alert('नाम clipboard में copy हुआ:\n' + text);      }catch(e){        // fallback        const ta = document.createElement('textarea');        ta.value = text; document.body.appendChild(ta);        ta.select(); document.execCommand('copy'); ta.remove();        alert('Copied (fallback): ' + text);      }    });    downloadBtn.addEventListener('click', () => {      const text = mainName.textContent + ' - ' + subName.textContent;      const blob = new Blob([text], {type:'text/plain;charset=utf-8'});      const url = URL.createObjectURL(blob);      const a = document.createElement('a');      a.href = url; a.download = (mainName.textContent || 'name') + '.txt';      document.body.appendChild(a); a.click(); a.remove(); URL.revokeObjectURL(url);    });  </script></body></html>
@shivamprajapatishivam702-hash

Theeks in my profile main aapko ane ke liye and yahi aap ko satbeer satap hai

@shivamprajapatishivam702-hash

<!doctype html>

<title>Satbeer — S.V Sarver Vard</title> <style> :root{ --bg:#0f1724; --card:#0b1220; --accent:#7dd3fc; --muted:#94a3b8; } *{box-sizing:border-box} body{ margin:0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", "Helvetica Neue", Arial; background: linear-gradient(180deg, #071021 0%, #0f1a2a 100%); color: #e6f0ff; min-height:100vh; display:flex; align-items:center; justify-content:center; padding:24px; } .card{ width:100%; max-width:720px; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border-radius:16px; padding:28px; box-shadow: 0 10px 30px rgba(2,6,23,0.6); border: 1px solid rgba(255,255,255,0.04); } header{ display:flex; gap:16px; align-items:center; } .avatar{ width:84px;height:84px;border-radius:12px; background: linear-gradient(135deg, #065f46, #0891b2); display:flex;align-items:center;justify-content:center; font-weight:700;font-size:32px;color:white; flex-shrink:0; box-shadow: 0 6px 18px rgba(3,7,18,0.6); } h1{ margin:0;font-size:32px;letter-spacing:0.6px; } p.subtitle{ margin:4px 0 0 0;color:var(--muted); font-size:14px; } .controls{ margin-top:20px;display:flex;gap:10px;flex-wrap:wrap; } button{ background:transparent;border:1px solid rgba(255,255,255,0.08); padding:10px 14px;border-radius:10px;color:inherit; cursor:pointer;font-weight:600; transition:all .18s ease; backdrop-filter: blur(6px); } button.primary{ background:linear-gradient(90deg,#0891b2,#06b6d4); color:#041322;border:0; box-shadow: 0 8px 20px rgba(3,7,18,0.5); } button:hover{transform:translateY(-3px)} .meta{ margin-top:18px;color:var(--muted);font-size:13px; }
/* responsive adjustments */@media (max-width:420px){  header{gap:12px}  .avatar{width:64px;height:64px;font-size:26px}  h1{font-size:24px}}
</style>
S

Satbeer

S.V Sarver Vard

<div>  <button>नाम बदलो / Edit Name</button>  <button>Copy Name</button>  <button>Download as TXT</button></div><p>  यह छोटा पेज मोबाइल-फ़्रेंडली है — "Edit Name" से नाम बदल सकते हो, "Copy Name" से clipboard में चले जाएगा, और "Download as TXT" से नाम की फ़ाइल बनाकर डाउनलोड कर लो।</p>
<script> const mainName = document.getElementById('mainName'); const subName = document.getElementById('subName'); const avatar = document.getElementById('avatar'); const editBtn = document.getElementById('editBtn'); const copyBtn = document.getElementById('copyBtn'); const downloadBtn = document.getElementById('downloadBtn'); function updateAvatarLetter(){ const txt = mainName.textContent.trim(); avatar.textContent = txt ? txt[0].toUpperCase() : 'S'; } updateAvatarLetter(); editBtn.addEventListener('click', () => { const newMain = prompt('मुख्य नाम डालो (example: Satbeer):', mainName.textContent) || mainName.textContent; const newSub = prompt('छोटा टेक्स्ट डालो (example: S.V Sarver Vard):', subName.textContent) || subName.textContent; mainName.textContent = newMain.trim(); subName.textContent = newSub.trim(); updateAvatarLetter(); }); copyBtn.addEventListener('click', async () => { const text = mainName.textContent + ' — ' + subName.textContent; try{ await navigator.clipboard.writeText(text); alert('नाम clipboard में copy हुआ:\n' + text); }catch(e){ // fallback const ta = document.createElement('textarea'); ta.value = text; document.body.appendChild(ta); ta.select(); document.execCommand('copy'); ta.remove(); alert('Copied (fallback): ' + text); } }); downloadBtn.addEventListener('click', () => { const text = mainName.textContent + ' - ' + subName.textContent; const blob = new Blob([text], {type:'text/plain;charset=utf-8'}); const url = URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = (mainName.textContent || 'name') + '.txt'; document.body.appendChild(a); a.click(); a.remove(); URL.revokeObjectURL(url); }); </script>

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

No reviews

Assignees

No one assigned

Labels

None yet

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

1 participant

@shivamprajapatishivam702-hash

[8]ページ先頭

©2009-2025 Movatter.jp