Small updates
This commit is contained in:
parent
7c5477a20b
commit
9100db4c17
13
about.html
13
about.html
|
@ -89,17 +89,6 @@
|
||||||
<a href="https://greenbaum.cloud"><img src="/assets/greenbaum-cloud-logo.svg" width="230" height="auto"></a>
|
<a href="https://greenbaum.cloud"><img src="/assets/greenbaum-cloud-logo.svg" width="230" height="auto"></a>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script src="./background.js"></script>
|
||||||
document.getElementById('x1312').innerHTML = (new Array(400)).fill("0x1312").join(" ");
|
|
||||||
const background = document.getElementById("background");
|
|
||||||
const logo = document.getElementById("logo").cloneNode(true);
|
|
||||||
logo.id = "";
|
|
||||||
(new Array(Math.ceil(window.innerWidth / 100) * Math.ceil(window.innerHeight / 100)))
|
|
||||||
.fill(null)
|
|
||||||
.map(_ => logo.cloneNode(true))
|
|
||||||
.forEach(l => {
|
|
||||||
background.appendChild(l);
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
10
background.js
Normal file
10
background.js
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
document.getElementById('x1312').innerHTML = (new Array(400)).fill("0x1312").join(" ");
|
||||||
|
const background = document.getElementById("background");
|
||||||
|
const logo = document.getElementById("logo").cloneNode(true);
|
||||||
|
logo.id = "";
|
||||||
|
(new Array(Math.ceil(window.innerWidth / 100) * Math.ceil(window.innerHeight / 100)))
|
||||||
|
.fill(null)
|
||||||
|
.map(_ => logo.cloneNode(true))
|
||||||
|
.forEach(l => {
|
||||||
|
background.appendChild(l);
|
||||||
|
});
|
13
index.html
13
index.html
|
@ -33,17 +33,6 @@
|
||||||
class="ps-footer--link"
|
class="ps-footer--link"
|
||||||
>climate-neutral hosting by Greenbaum Cloud</a>
|
>climate-neutral hosting by Greenbaum Cloud</a>
|
||||||
</footer>
|
</footer>
|
||||||
<script>
|
<script src="./background.js"></script>
|
||||||
document.getElementById('x1312').innerHTML = (new Array(400)).fill("0x1312").join(" ");
|
|
||||||
const background = document.getElementById("background");
|
|
||||||
const logo = document.getElementById("logo").cloneNode(true);
|
|
||||||
logo.id = "";
|
|
||||||
(new Array(Math.ceil(window.innerWidth / 100) * Math.ceil(window.innerHeight / 100)))
|
|
||||||
.fill(null)
|
|
||||||
.map(_ => logo.cloneNode(true))
|
|
||||||
.forEach(l => {
|
|
||||||
background.appendChild(l);
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
13
privacy.html
13
privacy.html
|
@ -87,16 +87,5 @@
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script src="./background.js"></script>
|
||||||
document.getElementById('x1312').innerHTML = (new Array(400)).fill("0x1312").join(" ");
|
|
||||||
const background = document.getElementById("background");
|
|
||||||
const logo = document.getElementById("logo").cloneNode(true);
|
|
||||||
logo.id = "";
|
|
||||||
(new Array(Math.ceil(window.innerWidth / 100) * Math.ceil(window.innerHeight / 100)))
|
|
||||||
.fill(null)
|
|
||||||
.map(_ => logo.cloneNode(true))
|
|
||||||
.forEach(l => {
|
|
||||||
background.appendChild(l);
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -164,14 +164,17 @@ html {
|
||||||
border: 12px solid black;
|
border: 12px solid black;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ps-page--link:hover {
|
||||||
|
text-shadow: 0.3vw 0px 0px var(--accent);
|
||||||
|
}
|
||||||
|
|
||||||
.ps-footer--link {
|
.ps-footer--link {
|
||||||
font-size: 6rem;
|
font-size: 6rem;
|
||||||
border: 6px solid black;
|
border: 6px solid black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ps-footer--link:hover,
|
.ps-footer--link:hover {
|
||||||
.ps-page--link:hover {
|
text-shadow: 0.2vw 0px 0px var(--accent);
|
||||||
text-shadow: 0.3vw 0px 0px var(--accent);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 700px) {
|
@media screen and (min-width: 700px) {
|
||||||
|
|
Loading…
Reference in a new issue