Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions keynote/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="es">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Freestylear.la</title>
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="../favicon.png" />
</head>

<body>
<div class="main-container">
<div class="header">
<img src="../images/SYSARMY_logo-01.png" alt="Sysarmy Logo" class="logo">
<h1>📢 The Freestyler</h1>
<h2>#AdminBirras 🍺</h2>
<h3>¡Un juego en el que podes ser keynote speaker!</h3>
</div>

<div class="keynote-display">
<div id="keynote-name" class="keynote-name">
<p>- - - - - - - - - - - - </p>
</div>
</div>

<div class="game-controls">
<button id="generate-btn" class="generate-button">
Generar keynote
</button>

<div id="timer-display" class="timer-display hidden">
<div class="timer-circle">
<span id="countdown-number">30</span>
</div>
<p class="timer-label">¡Freestyleala!</p>
</div>

<div id="game-over" class="game-over hidden">
<h2>¡Fin!</h2>
<p>¿Standing ovation?</p>
</div>
</div>

<div class="instructions">
<h3>¿Cómo se juega?</h3>
<ol>
<li>Apretá en "Generar keynote"</li>
<li>Se te ocurrio una idea de charla. Tenés 22 segundos. <strong>¡Contála!</strong></li>
<li>El resto dice si se para y aplaude o no</li>
</ol>
</div>

<div class="footer">
<p>Hecho con <3 por <a href="https://sysarmy.com" target="_blank">Sysarmy</a>
inspirado en <a href="https://github.com/dcts/bullpitch" target="_blank">Bullpitch</a></p>
</div>
</div>

<script src="main.js"></script>
</body>

</html>
Loading