22 lines
763 B
Plaintext
22 lines
763 B
Plaintext
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Bewerbungs-Tracker</title>
|
|
<!-- Apply the dark class before first paint to avoid a light-mode flash (FOUC).
|
|
Theme follows the browser/OS setting (prefers-color-scheme) — no manual toggle. -->
|
|
<script>
|
|
(function () {
|
|
try {
|
|
if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
|
document.documentElement.classList.add('dark');
|
|
}
|
|
} catch (e) { /* ignore */ }
|
|
})();
|
|
</script>
|
|
<!-- Tailwind CSS CDN -->
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script>
|
|
tailwind.config = { darkMode: 'class' };
|
|
</script>
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="/css/styles.css">
|