Seite scrollbar + zoombar + Footer mit © neunzig.wtf und Commitstand
All checks were successful
Pin to IPFS / pin (push) Successful in 11s

This commit is contained in:
Ole 2026-06-14 16:30:24 +02:00
parent 87d2d0f190
commit 021f185924
2 changed files with 23 additions and 5 deletions

View file

@ -2,7 +2,7 @@
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>randomp2p Münzwurf</title>
<link rel="stylesheet" href="style.css">
</head>
@ -125,6 +125,9 @@
</div>
</section>
<footer>
<p>&copy; by neunzig.wtf &middot; commit <span id="commit-hash">HASH</span></p>
</footer>
<script src="vendor/simplepeer.min.js"></script>
<script src="vendor/qrcode.min.js"></script>
<script src="vendor/jsQR.js"></script>

View file

@ -19,18 +19,24 @@
--shadow: 0 4px 24px rgba(0,0,0,0.4);
}
html, body {
height: 100%;
html {
min-height: 100vh;
}
body {
min-height: 100vh;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: var(--bg);
color: var(--text);
overflow: hidden;
overflow-x: hidden;
overflow-y: auto;
display: flex;
flex-direction: column;
}
/* Screens */
.screen {
display: none;
height: 100%;
flex: 1;
align-items: center;
justify-content: center;
padding: 20px;
@ -382,5 +388,14 @@ h3 {
background: var(--bg-hover);
}
/* Footer */
footer {
text-align: center;
padding: 20px 16px;
color: var(--text-dim);
font-size: 0.8rem;
border-top: 1px solid var(--border);
}
/* Utility */
.hidden { display: none !important; }