migrate from main
|
Before Width: | Height: | Size: 92 KiB |
|
Before Width: | Height: | Size: 95 KiB |
|
Before Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 152 KiB |
BIN
assets/loading.png
Normal file
|
After Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
|
|
@ -1,6 +0,0 @@
|
||||||
.content {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
padding-top: 24px;
|
|
||||||
padding-bottom: 300px; /* forces scroll */
|
|
||||||
}
|
|
||||||
|
|
@ -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>
|
||||||
|
|
||||||