sciencesproject / quadrillage_noir.html
ssbagpcm's picture
Upload folder using huggingface_hub
960bb66 verified
raw
history blame contribute delete
537 Bytes
<html><head><base href="https://websim.example.com/"><title>Fond Noir Quadrillé</title><style>
body {
margin: 0;
padding: 0;
background-color: black;
height: 100vh;
overflow: hidden;
}
.grid {
width: 100%;
height: 100%;
background-image:
linear-gradient(to right, rgba(128, 128, 128, 0.1) 1px, transparent 1px),
linear-gradient(to bottom, rgba(128, 128, 128, 0.1) 1px, transparent 1px);
background-size: 50px 50px;
}
</style></head>
<body>
<div class="grid"></div>
</body></html>