<!DOCTYPE html>
<html>
<head>
- <meta http-equiv="refres" content="5">
<style>
+@font-face {
+ font-family: "Archivo";
+ font-weight: normal;
+ font-style: normal;
+ src:
+ local("Archivo"),
+ url("fonts/Archivo-Regular.woff") format("woff"),
+}
+@font-face {
+ font-family: "Archivo";
+ font-weight: bold;
+ font-style: normal;
+ src:
+ local("Archivo"),
+ url("fonts/Archivo-SemiBold.woff") format("woff"),
+}
+@font-face {
+ font-family: "Archivo";
+ font-weight: normal;
+ font-style: italic;
+ src:
+ local("Archivo"),
+ url("fonts/Archivo-Italic.woff") format("woff"),
+}
+@font-face {
+ font-family: "Archivo";
+ font-weight: bold;
+ font-style: italic;
+ src:
+ local("Archivo"),
+ url("fonts/Archivo-SemiBoldItalic.woff") format("woff"),
+}
+
body {
--star-light: #FFE0B3;
--star-dark: #FFC266;
--dark: #DEDEDE;
+ --black: #3b3b45;
--feature-dark: #AAAAEE;
--feature-light: #BBBBEE;
--feature-white: #EAEAFA;
--background: linear-gradient(var(--background-light), var(--background-dark));
--clock: conic-gradient(var(--background-light) 0deg, var(--background-light) 0deg, rgb(0,0,0,0) 0.1deg), rgb(0,0,0,0) 360deg);
- font-family: sans-serif;
+ font-family: "Archivo", sans-serif;
font-size: 1.6vh;
- color: black;
+ color: var(--black);
opacity: 0;
transition: opacity 1.5s;
transition: transform 1.5s;
}
.main > hr, .extra > hr {
- margin: 0.5vh 1vh;
+ margin: 0 1vh;
padding: 0;
border-color: var(--dark);
}
font-size: 1.5em;
font-weight: bold;
font-style: italic;
+ text-shadow: 0 0 3px rgba(0,0,0,0.25);
color: var(--feature-dark);
}
.marquee {
document.getElementById("stock").innerHTML = `${data[itemId].stockCount} units`;
document.getElementById("sold").innerHTML = `${Math.round(data[itemId].stockCount * (1 - percentLeft))} units`;
- console.log(percentLeft);
if (percentLeft < 0.1) { descriptor = "Quick! Only"; }
else if (percentLeft < 0.25) { descriptor = "Only"; }
else if (percentLeft < 0.5) { descriptor = "Just"; }
<h2 style="margin-top: 1vh;" id="currentPrice">Current Price</h4>
<p id="monthlyPrice">Monthly Price</p>
<div class="soldBox">
- <p style="font-size: 1.2em;">In Stock: <span style="margin-right:10px;" id="stock"></span> Sold: <span id="sold"></span></p>
+ <p style="font-size: 1.2em;">In stock: <span style="margin-right:10px;" id="stock"></span> Sold: <span id="sold"></span></p>
<p style="font-size: 1.6em;" class="alert" id="unitsLeft"></p>
</div>
</div>