b656d02547
Simple bare-bones book progress bar with a test animation running. Changes: - Migrated to a new repo because the whole project was in the wrong local directory.. oops - Removed remaining unrelated timer files and code. TODO: - Remove IMGUR hotlink - Update book art - Proper input value testing - Get websocket connected and tested
25 lines
846 B
HTML
25 lines
846 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Cutive+Mono&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="BookBar.css" />
|
|
<script src="BookBar.js"></script>
|
|
<title>Lilac BookBar</title>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<div class='widgetContainer'>
|
|
<div id='progressBar' class="layoutContainer">
|
|
<div id='barBack' class='barFlashHelper'></div>
|
|
<div id='barFront' class='barFlashHelper'>
|
|
<div id='paperOverlay'>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html> |