first commit

This commit is contained in:
nxxy335top
2026-05-18 17:29:18 +08:00
parent e85fbd62f4
commit a0c64736eb
119 changed files with 13527 additions and 1228 deletions
+13
View File
@@ -0,0 +1,13 @@
(function(){
var h = document.querySelector(".hero");
if (!h) return "No .hero element found";
var s = getComputedStyle(h);
return JSON.stringify({
width: s.width,
marginLeft: s.marginLeft,
marginTop: s.marginTop,
paddingTop: s.paddingTop,
left: s.left,
position: s.position
});
})()