This commit is contained in:
2026-03-22 22:44:58 +01:00
parent 5a5b9f7227
commit d09bca6326
13 changed files with 118 additions and 13 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 829 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

+11
View File
@@ -5,7 +5,18 @@
top: 0;
left: 0;
background-color: darkred;
}
.language {
position: absolute;
width: 10%;
height: 20%;
top: 0;
right: 0;
background-color: #f8b803;
}
.language img {
height: 35%;
}
#logo {
+4
View File
@@ -0,0 +1,4 @@
function setLanguage(lang) {
document.cookie = "lang=" + lang;
location.reload();
}