This commit is contained in:
2025-05-02 22:22:10 +00:00
commit 51c616f9f0
52 changed files with 2934 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
html { background:#$THEME_COLOR_BG; color:#$THEME_COLOR_FG; }
body { margin: 8px; }
form { display: flex; column-gap: 8px; }
label, input { font-size: ${THEME_SIZE_FONT_LARGE_MULT}rem; }
input { flex:2; min-width:100px; background: none; }
</style>
</head>
<body>
<form onsubmit="location.href='https://lite.duckduckgo.com/lite/?q='+encodeURIComponent(document.getElementById('q').value); return false">
<label for="id">web :open</label>
<input type="text" name="q" id="q" autofocus>
</form>
</body>
</html>