diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-06-19 01:09:11 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-06-19 01:09:11 +0400 |
commit | db0dfe5ce621ab346046a8e144407e8b151123c9 (patch) | |
tree | 0d44327af735e2bc00f35d20cb9341b031f38f25 /config/qutebrowser/startpage/index.html | |
parent | 86e41aa7d35073f1cf675e50fa2c9f138d417f63 (diff) |
chore(qutebrowser): clean up theme, bookmarks and startpage
- Move themes in themes/ folder
- Update startpage/index.html: fix height to 100vh, set font to JetBrains Mono 11px, remove unused stylesheet link
- Add new themes: ayu_light and nord
- Use `current_theme.py` sym-link for selection of themes
Diffstat (limited to 'config/qutebrowser/startpage/index.html')
-rwxr-xr-x[-rw-r--r--] | config/qutebrowser/startpage/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/qutebrowser/startpage/index.html b/config/qutebrowser/startpage/index.html index b848797..05a074f 100644..100755 --- a/config/qutebrowser/startpage/index.html +++ b/config/qutebrowser/startpage/index.html @@ -3,14 +3,14 @@ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <link rel='stylesheet' type='text/css' href="style.css"> <title>startpage</title> <style> body { - height: 97.5vh; + height: 100vh; display: flex; align-items: center; - font: 12px monospace; + font-family: "JetBrains Mono"; + font-size: 11px; justify-content: center; background: #212121; color: #fff; |