diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2024-07-29 15:06:33 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2024-07-29 15:06:33 +0400 |
commit | 06dfaea73429e1957a8646a892df21828f4f7ed2 (patch) | |
tree | 5762597020ba335faf0991bd1dbf07c819ae7b38 /config/qutebrowser/startpage/index.html | |
parent | 63b073a3583929dd4ff059498ad0bbc4263d7fd4 (diff) |
qutebrowser: config minimalized
Diffstat (limited to 'config/qutebrowser/startpage/index.html')
-rw-r--r--[-rwxr-xr-x] | config/qutebrowser/startpage/index.html | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/config/qutebrowser/startpage/index.html b/config/qutebrowser/startpage/index.html index 3f7a84c..b848797 100755..100644 --- a/config/qutebrowser/startpage/index.html +++ b/config/qutebrowser/startpage/index.html @@ -1,16 +1,24 @@ <!DOCTYPE html> <html lang="en"> <head> - <meta charset="UTF-8"> - <title>startpage</title> - <!--Custom CSS--> - <link rel="stylesheet" href="css/main.css"> + <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; + display: flex; + align-items: center; + font: 12px monospace; + justify-content: center; + background: #212121; + color: #fff; + } + </style> </head> + <body> - </div> - <div id="main" class="main"> - <div id="message"> - <h1 id="message-text">Qutebrowser</h1> - </div> - </body> + <h1>Qutebrowser</h1> +</body> </html> |