Files
Quizalarm/public/present.html
T

49 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quizalarm — Präsentation</title>
<link rel="icon" href="/img/logo.png">
<script src="https://unpkg.com/react@18/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js" crossorigin></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<style>
body {
font-family: system-ui, -apple-system, sans-serif;
background: #111111 url('/img/bg.png') center/cover fixed;
}
.answer-a {
background: #2563eb;
}
.answer-b {
background: #7c3aed;
}
.answer-c {
background: #d97706;
}
.answer-d {
background: #0891b2;
}
.fire-gradient {
background: linear-gradient(135deg, #dc2626, #f59e0b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
</style>
</head>
<body class="text-white min-h-screen">
<div id="root"></div>
<script type="text/babel" src="/js/present.js"></script>
</body>
</html>