Files
ChessCubing/www/index.html
2026-04-12 22:57:40 +02:00

58 lines
2.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="js/scene.js"></script>
<script src="cordova.js"></script>
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#000000">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/clock-scene.css">
<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=Cormorant+Garamond:wght@400;500;600;700&family=Cinzel:wght@400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<div id="sceneClock" class="scene scene-clock">
<div class="clock-shell">
<div class="clock-topbar">
<h1 id="BlockTime" class="TextClock clock-status">Temps restant Block : 3:00</h1>
<h1 id="BlockType" class="TextClock clock-mode">Block -</h1>
</div>
<div class="clock-board">
<section class="player-zone player-zone-white">
<div class="player-badge">BLANC</div>
<div class="clock-panel clock-panel-white">
<div class="button" id="white_button" aria-label="White clock button"></div>
<div class="panel-light"></div>
<h1 id="TimeWhite" class="TextClock clock-time">10:00</h1>
<h1 id="MoveLeftWhite" class="TextClock clock-moves">Coup restant Blanc : 8</h1>
</div>
</section>
<div class="clock-divider"></div>
<section class="player-zone player-zone-black">
<div class="player-badge player-badge-dark">NOIR</div>
<div class="clock-panel clock-panel-black">
<div class="button" id="black_button" aria-label="Black clock button"></div>
<div class="panel-light"></div>
<h1 id="TimeBlack" class="TextClock clock-time">10:00</h1>
<h1 id="MoveLeftBlack" class="TextClock clock-moves">Coup restant Noir : 8</h1>
</div>
</section>
</div>
</div>
</div>
<script src="js/ClockFrontEnd.js"></script>
<script src="js/appload.js"></script>
<script src="js/backend.js"></script>
</body>
</html>