add more pages & update them
This commit is contained in:
parent
9dfda09b03
commit
b5c1990aa9
6 changed files with 106 additions and 1 deletions
BIN
Splatoon1.otf
Normal file
BIN
Splatoon1.otf
Normal file
Binary file not shown.
BIN
assets/hamburgerbar.png
Normal file
BIN
assets/hamburgerbar.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
BIN
assets/stageinfo.png
Normal file
BIN
assets/stageinfo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 20 KiB |
71
html/login/loginpage.html
Normal file
71
html/login/loginpage.html
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -15,6 +15,7 @@
|
||||||
background-size: 800px 800px;
|
background-size: 800px 800px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* HEADER */
|
||||||
.header {
|
.header {
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 150px;
|
height: 150px;
|
||||||
|
|
@ -32,18 +33,45 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.hamburger {
|
||||||
|
position: absolute;
|
||||||
|
left: 40px;
|
||||||
|
top: 40%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
height: 50px;
|
||||||
|
cursor: pointer;
|
||||||
|
z-index: 3;
|
||||||
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
max-height: 120px;
|
max-height: 120px;
|
||||||
margin-top: 0px;
|
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* MAIN CONTENT */
|
||||||
|
.content {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
padding-top: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stage-info {
|
||||||
|
width: 65%;
|
||||||
|
max-width: 600px;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div class="header">
|
<div class="header">
|
||||||
|
<img src="assets/hamburgerbar.png" class="hamburger" alt="Menu">
|
||||||
<img src="assets/SplatNetLogo.png" class="logo" alt="SplatNet Logo">
|
<img src="assets/SplatNetLogo.png" class="logo" alt="SplatNet Logo">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<img src="assets/stageinfo.png" class="stage-info" alt="Stage Info">
|
||||||
|
</div>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
6
html/stages/styles.css
Normal file
6
html/stages/styles.css
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
.content {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
padding-top: 24px;
|
||||||
|
padding-bottom: 300px; /* forces scroll */
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue