first commit

This commit is contained in:
2026-04-13 07:15:44 +00:00
parent ad29150770
commit 97a4e3af52
239 changed files with 6671 additions and 91 deletions

View File

@@ -0,0 +1,11 @@
<div id="dom-node">
<div class="pixel top left"></div>
<div class="pixel top center"></div>
<div class="pixel top right"></div>
<div class="pixel middle left"></div>
<div class="pixel middle center"></div>
<div class="pixel middle right"></div>
<div class="pixel bottom left"></div>
<div class="pixel bottom center"></div>
<div class="pixel bottom right"></div>
</div>

View File

@@ -0,0 +1,27 @@
.pixel {
width: 10px;
height: 10px;
float: left;
}
.top {
background-color: rgb(255, 0, 0);
}
.middle {
background-color: rgb(0, 255, 0);
}
.bottom {
background-color: rgb(0, 0, 255);
}
.left {
clear: left;
}
.center {
opacity: 0.4;
}
.right {
opacity: 0.2;
}
#dom-node {
width: 30px;
height: 30px;
}