initial commit

This commit is contained in:
nnwhen 2025-03-18 22:30:26 +02:00
parent 3ce56cd6ff
commit d4d0bf91b1
40 changed files with 1361 additions and 0 deletions

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View file

@ -0,0 +1,31 @@
function inject() {
let terms = [
"SUBSTELSEL",
"INKQUTYWANA",
"TSAMAISOANE",
"ПОДСИСТЕМА",
"النظام الفرعي",
"उपतन्त्रम्",
"ระบบย่อย",
"PUNAHURU",
"UNDIRKERFI",
"תת מערכת",
"ԵՆԹԱՀԱՄԱԿԱՐԳ",
"FO-CHÓRAS",
"KĀNĀWAI",
"SUBSYSTEM",
];
// "サブシステム", "ΥΠΟΣΥΣΤΕΜΑ",
document.getElementById("subsystem").innerHTML =
terms[Math.floor(Math.random() * terms.length)];
}
function disableInject() {
clearInterval(injectedPortal);
}
document.addEventListener("DOMContentLoaded", function () {
injectedPortal = setInterval(inject, Math.round(Math.random() * 1000));
});

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

BIN
subsystem/subres/ppl-na.avif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
subsystem/subres/ppl-na.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 KiB

BIN
subsystem/subres/ppl-na.jxl Executable file

Binary file not shown.

BIN
subsystem/subres/ppl-na.webp Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

BIN
subsystem/subres/ppl-raea.avif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

BIN
subsystem/subres/ppl-raea.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

BIN
subsystem/subres/ppl-raea.jxl Executable file

Binary file not shown.

BIN
subsystem/subres/ppl-raea.webp Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View file

@ -0,0 +1,53 @@
#about {
columns: 2;
}
.profile {
display: flex;
flex-direction: row;
width: 90%;
margin: 20px auto;
padding: 10px 20px;
break-inside: avoid;
background-color: var(--d-green);
}
.profile a {
background-color: var(--orange);
color: var(--black);
}
.profile a:hover {
background-color: var(--black);
color: var(--orange);
}
.profile > hgroup {
margin: 0 10px;
text-align: center;
}
.profile hgroup h1 {
margin: 5px;
font-size: larger;
}
.profile hgroup h2 {
margin: 5px;
font-size: medium;
}
.profile hgroup h3 {
margin: 5px;
font-size: large;
}
.profile p {
flex-grow: 1;
padding: 5px 10px;
}
.profile img {
width: 250px;
object-fit: cover;
object-position: center;
}
@media only screen and (max-width: 1100px) {
#about {
columns: 1;
}
}

View file

@ -0,0 +1,45 @@
main {
width: min(95%, 650px);
margin: auto;
}
hgroup {
margin: 20px;
}
hgroup h1,
hgroup h2 {
margin: 0;
}
hgroup h1 {
font-size: xx-large;
}
hgroup h2 {
font-size: large;
}
article h3 {
text-align: center;
font-size: medium;
margin-bottom: -10px;
}
h3 {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
text-align: center;
}
h3:after,
h3:before {
content: "";
flex-grow: 1;
height: 1px;
margin: auto 10px;
background-color: var(--black);
}
.proclaim {
text-align: center;
font-size: x-large;
font-weight: bold;
font-style: italic;
}