1
0
Files
medical-notes/quiz/templates/base.html
Johan Dahlin 2ec904d899
All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 2m30s
vault backup: 2025-12-21 20:21:58
2025-12-21 20:21:58 +01:00

22 lines
889 B
HTML

<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz</title>
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
<style>
body { font-family: system-ui, -apple-system, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; }
.question { background: #f5f5f5; padding: 20px; border-radius: 8px; margin: 20px 0; }
.option { padding: 10px; margin: 5px 0; cursor: pointer; border: 2px solid #ddd; border-radius: 4px; }
.option:hover { background: #e9e9e9; }
.progress { background: #ddd; height: 20px; border-radius: 10px; margin: 20px 0; }
.progress-bar { background: #4CAF50; height: 100%; border-radius: 10px; transition: width 0.3s; }
</style>
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>