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