diff options
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> |