Cat-Printer/www/_load.html
2022-04-06 18:13:19 +08:00

28 lines
675 B
HTML

<!DOCTYPE html>
<html lang="en">
<!-- For replacing python-for-android webview bootstrap _load.html -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Python Webview Loading</title>
<style>
:root {
--fore-color: #111;
--back-color: #eee;
}
body {
background-color: var(--back-color);
color: var(--fore-color);
}
@media (prefers-color-scheme: dark) {
:root {
--fore-color: #eee;
--back-color: #333;
}
}
</style>
</head>
<body>
</body>
</html>