add more pages & update them

This commit is contained in:
kittentm 2025-12-30 04:25:58 +01:00
commit b5c1990aa9
6 changed files with 106 additions and 1 deletions

BIN
Splatoon1.otf Normal file

Binary file not shown.

BIN
assets/hamburgerbar.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
assets/stageinfo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

71
html/login/loginpage.html Normal file

File diff suppressed because one or more lines are too long

View file

@ -15,6 +15,7 @@
background-size: 800px 800px;
}
/* HEADER */
.header {
position: relative;
height: 150px;
@ -32,18 +33,45 @@
);
}
.hamburger {
position: absolute;
left: 40px;
top: 40%;
transform: translateY(-50%);
height: 50px;
cursor: pointer;
z-index: 3;
}
.logo {
max-height: 120px;
margin-top: 0px;
z-index: 2;
}
/* MAIN CONTENT */
.content {
display: flex;
justify-content: center;
padding-top: 24px;
}
.stage-info {
width: 65%;
max-width: 600px;
height: auto;
}
</style>
</head>
<body>
<div class="header">
<img src="assets/hamburgerbar.png" class="hamburger" alt="Menu">
<img src="assets/SplatNetLogo.png" class="logo" alt="SplatNet Logo">
</div>
<div class="content">
<img src="assets/stageinfo.png" class="stage-info" alt="Stage Info">
</div>
</body>
</html>

6
html/stages/styles.css Normal file
View file

@ -0,0 +1,6 @@
.content {
display: flex;
justify-content: center;
padding-top: 24px;
padding-bottom: 300px; /* forces scroll */
}