mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-29 18:58:40 +09:00
19 lines
215 B
HTML
19 lines
215 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
|
|
@page {}
|
|
|
|
</style>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.styleSheets[0].cssRules[0].style.paddingLeft = "initial";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"></body>
|
|
</html>
|