51 lines
No EOL
910 B
Markdown
51 lines
No EOL
910 B
Markdown

|
|
-
|
|
### Current Progress:
|
|
<div class="progress-wrapper">
|
|
<div class="progress-container">
|
|
<div class="progress-bar" style="width: 0%;"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.progress-wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.progress-container {
|
|
width: 400px;
|
|
height: 24px;
|
|
background: #e5e7eb;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.progress-bar {
|
|
height: 100%;
|
|
background: linear-gradient(90deg, #00ffcc, #00aa88);
|
|
transition: width 0.3s ease;
|
|
}
|
|
</style>
|
|
|
|
<p style="text-align: center;">Basically 0% lol</p>
|
|
|
|
### Pages HTML recreated:
|
|
|
|
- [ ] Friends List
|
|
|
|
- [ ] Rank
|
|
|
|
- [ ] Equipment
|
|
|
|
- [ ] Stage Info
|
|
- [x] Basic Stage Fetching (using pretendo)
|
|
- [x] Show stage pngs
|
|
- [ ] Show all stage times
|
|
- [ ] Show Ranked Mode
|
|
|
|
### Basic ToDos:
|
|
|
|
- [x] Title Bar
|
|
- [ ] Page switching (hamburger menu)
|
|
- [ ] Squid swimming background |