This commit is contained in:
2025-05-13 14:37:14 +02:00
parent ff7eefb3bb
commit 450f848fac
2 changed files with 125 additions and 0 deletions

18
index.htm Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE HTML>
<html id="home" lang="en">
<head>
<style>
* { box-sizing: border-box; z-index: 1; }
a { text-decoration: inherit; color: inherit; }
#wrap { display: grid; grid-template-columns: repeat(8, 1fr); max-width: 480px; margin: 10vh auto; }
.cell { display: inline-block; min-width: 10px; height: 30px; border: 1px solid #000; vertical-align: column; text-align: center; }
.cell.disabled { background-color: #fff;
opacity: 0.8;
background: repeating-linear-gradient( 45deg, #000, #000 2px, #fff 2px, #fff 15px ); }
</style>
</head>
<body>
<script src="kreuzwortraetsel.js?v00062" type="text/javascript" async></script>
</body>
</html>