You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
<!doctype html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="utf-8" /> |
|
<meta name="viewport" content="width=device-width,initial-scale=1" /> |
|
<meta name="color-scheme" content="light dark" /> |
|
|
|
<title>ORLY?</title> |
|
|
|
<style> |
|
:root { |
|
color-scheme: light dark; |
|
} |
|
html, body { |
|
background-color: #fff; |
|
color: #000; |
|
} |
|
@media (prefers-color-scheme: dark) { |
|
html, body { |
|
background-color: #000; |
|
color: #fff; |
|
} |
|
} |
|
</style> |
|
|
|
<link rel="icon" type="image/png" href="/favicon.png" /> |
|
<link rel="manifest" href="/manifest.json" /> |
|
<link rel="apple-touch-icon" href="/icon-192.png" /> |
|
<meta name="theme-color" content="#000000" /> |
|
<meta name="apple-mobile-web-app-capable" content="yes" /> |
|
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> |
|
<link rel="stylesheet" href="/global.css" /> |
|
<link rel="stylesheet" href="/bundle.css" /> |
|
|
|
<script defer src="/bundle.js"></script> |
|
</head> |
|
|
|
<body></body> |
|
<script> |
|
if ('serviceWorker' in navigator) { |
|
navigator.serviceWorker.register('/sw.js'); |
|
} |
|
</script> |
|
</html>
|
|
|