migrate from main

This commit is contained in:
kittentm 2026-01-16 21:15:35 +01:00
commit 45570f19fe
15 changed files with 14 additions and 102 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 152 KiB

BIN
assets/loading.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

View file

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

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

View file

@ -10,7 +10,7 @@
} }
body { body {
background-image: url("../../assets/stage.png"); background-image: url("/assets/stage.png");
background-repeat: repeat; background-repeat: repeat;
background-size: 800px 800px; background-size: 800px 800px;
} }
@ -63,20 +63,25 @@
margin-bottom: 20px; margin-bottom: 20px;
} }
.stages-container { .stages-container {
width: 100%; width: 100%;
display: flex; max-width: 600px;
flex-direction: column; display: grid;
align-items: center; grid-template-columns: 1fr; /* ONE COLUMN */
gap: 30px; row-gap: 30px;
} justify-items: stretch;
}
.stages-container > * {
width: 100%;
}
</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>

0
styles.css Normal file
View file