redo the disigne(Codex)

This commit is contained in:
2026-04-12 22:57:40 +02:00
parent 408acdc23b
commit fccfcb1db2
3 changed files with 305 additions and 13 deletions

View File

@@ -8,27 +8,50 @@
<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=Dancing+Script:wght@400..700&display=swap" rel="stylesheet">
<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">
<div class="button" id="black_button"></div>
<div class="button" id="white_button"></div>
<h1 id="TimeWhite" class="TextClock">10:00</h1>
<h1 id="TimeBlack" class="TextClock">10:00</h1>
<h1 id="BlockTime" class="TextClock">temps restant Block : 03:00</h1>
<h1 id="MoveLeftWhite" class="TextClock">Coup restant Blanc : 8</h1>
<h1 id="MoveLeftBlack" class="TextClock">Coup restant Noire : 8</h1>
<h1 id="BlockType" class="TextClock">Block -</h1>
<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>
</html>