This commit is contained in:
Index 2024-01-20 18:18:08 -06:00
parent 514566cf6c
commit ca1479b471
5 changed files with 68 additions and 2 deletions

View file

@ -0,0 +1 @@
{"bg": "#000", "accent": "#007bff", "secondary": "#000", "cardBg": "#212121", "font": null, "text": "#fff"}

View file

@ -1 +0,0 @@
{bg: "#000", accent: "#007bff", secondary: "#000", cardBg: "#212121", font: null, text: "#fff"}

View file

@ -1 +1,58 @@
Frontend is coming soon!
<!doctype html>
<html>
<head>
<!-- META -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- TITLE -->
<title>Poly+</title>
<!-- RESOURCES -->
<link rel="stylesheet" href="style.css" type="text/css">
<!--<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">-->
<link href="https://cdn.jsdelivr.net/npm/halfmoon@2.0.1/css/halfmoon.min.css" rel="stylesheet" integrity="sha256-SsJizWSIG9JT9Qxbiy8xnYJfjCAkhEQ0hihxRn7jt2M=" crossorigin="anonymous">
</head>
<body data-bs-theme="dark">
<main id="page">
<div class="text-center mb-5" style="background: linear-gradient(to bottom, #2e629a47, var(--background)); height: 300px; padding-top: 5rem;">
<h1>Power-up your <span style="color: var(--polytoria-primary);">Polytoria</span> experience with <span style="text-shadow: 0 3px 0px var(--accent);">Poly+</span></h1>
<h4 class="fw-light">Poly+ is a quality-of-life extension to improve your experience on Polytoria!</h4>
<i class="text-muted">coming soon to <!--available now on--> Chromium-based browsers</i>
<br>
<!--
<a href="#" class="btn btn-primary btn-sm font-monospace mt-2">install now</a>
-->
</div>
<h2 class="text-center">Features</h2>
<!-- PINNED GAMES FEATURE SHOWCASE -->
<div class="row w-75 mx-auto">
<div class="col-md-4">
<img src="pinned-games.png" class="img-fluid" alt="Feature Showcase - Pinned Games">
</div>
<div class="col">
<h3 class="fw-light">Pinned Games</h3>
<p>Quickly jump into your favorite games by pinning up to 5 of them to the top of your Polytoria homepage!</p>
</div>
</div>
<div style="height: 75px;"></div>
<!-- MORE FEATURE LIST (NOT ALL FEATURES) -->
<div class="text-center">
<h2>...and more!</h2>
<p>This is not a full list of the extension's features.</p>
<ul class="list-unstyled">
<li>- Pinned Games</li>
<li>- Best Friends</li>
<li>- Forum Mentions</li>
<li>- Improved Friend Lists</li>
<li>- IRL Price with Brick Count</li>
<li>- Store <code>owned</code> Tag</li>
</ul>
</div>
</main>
</body>
</html>

BIN
public/pinned-games.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 705 KiB

9
public/style.css Normal file
View file

@ -0,0 +1,9 @@
:root {
--background: #151515;
--accent: red;
--polytoria-primary: #FF4647;
}
html, body, main#page {
background: var(--background);
}