Files
sciezka/sciezka.html
T
avinal 4f69f3b3f4 feat: fuzzy search engine and Spotlight-style UI
Custom fzy algorithm with fulltext and prefix modes, boxy dark-aware UI
with keyboard navigation, mode switching, match highlighting, and
auto-resizing iframe overlay.

Assisted-by: Claude Code
Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
2026-04-20 17:15:23 +05:30

29 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="sciezka.css">
</head>
<body>
<div id="sciezka-root">
<div id="search-bar">
<svg id="search-icon" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="11" cy="11" r="8"/><path d="m21 21-4.3-4.3"/>
</svg>
<input id="search-input" type="text" placeholder="Search tabs, history, bookmarks..." autofocus>
<span id="method-badge">fuzzy</span>
</div>
<div id="mode-bar"></div>
<div id="results"></div>
<div id="footer">
<span class="hint"><kbd>&uarr;&darr;</kbd> navigate</span>
<span class="hint"><kbd>Enter</kbd> open</span>
<span class="hint"><kbd>Tab</kbd> mode</span>
<span class="hint"><kbd>Ctrl+F</kbd> search type</span>
<span class="hint"><kbd>Esc</kbd> close</span>
</div>
</div>
<script src="dist/sciezka.js"></script>
</body>
</html>