Files
Quizalarm/public/index.html
T

82 lines
2.0 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</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: #dc2626;
}
.answer-a:hover {
background: #b91c1c;
}
.answer-b {
background: #2563eb;
}
.answer-b:hover {
background: #1d4ed8;
}
.answer-c {
background: #d97706;
}
.answer-c:hover {
background: #b45309;
}
.answer-d {
background: #16a34a;
}
.answer-d:hover {
background: #15803d;
}
.answer-a.selected,
.answer-b.selected,
.answer-c.selected,
.answer-d.selected {
outline: 4px solid white;
transform: scale(1.03);
}
.answer-a.disabled,
.answer-b.disabled,
.answer-c.disabled,
.answer-d.disabled {
opacity: 0.6;
cursor: not-allowed;
}
.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/app.js"></script>
</body>
</html>