Files
Quizalarm/public/index.html
T

72 lines
1.7 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>
<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;
}
.answer-a {
background: #ef4444;
}
.answer-a:hover {
background: #dc2626;
}
.answer-b {
background: #3b82f6;
}
.answer-b:hover {
background: #2563eb;
}
.answer-c {
background: #f59e0b;
}
.answer-c:hover {
background: #d97706;
}
.answer-d {
background: #22c55e;
}
.answer-d:hover {
background: #16a34a;
}
.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;
}
</style>
</head>
<body class="bg-gray-900 text-white min-h-screen">
<div id="root"></div>
<script type="text/babel" src="/js/app.js"></script>
</body>
</html>