mirror of
https://github.com/NaitLee/Cat-Printer.git
synced 2025-05-18 00:00:18 -07:00
28 lines
675 B
HTML
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> |