aboutsummaryrefslogtreecommitdiff
path: root/qute/dot-config/qutebrowser/startpage.html
diff options
context:
space:
mode:
Diffstat (limited to 'qute/dot-config/qutebrowser/startpage.html')
-rw-r--r--qute/dot-config/qutebrowser/startpage.html42
1 files changed, 42 insertions, 0 deletions
diff --git a/qute/dot-config/qutebrowser/startpage.html b/qute/dot-config/qutebrowser/startpage.html
new file mode 100644
index 0000000..51b294b
--- /dev/null
+++ b/qute/dot-config/qutebrowser/startpage.html
@@ -0,0 +1,42 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>about:blank</title>
+ <style>
+ body {
+ background-color: #2e3440; /* Dark background example */
+ /* color: #eceff4; */
+ font-family: "Bitter Pro";
+ letter-spacing: 1px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100vh;
+ margin: 0;
+ }
+ h1 {
+ margin: 0;
+ font-weight: 400;
+ font-size: 40px;
+ text-align: center;
+ color: #f35626;
+ background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ -webkit-animation: hue 10s infinite linear;
+ }
+
+ @-webkit-keyframes hue {
+ from {
+ -webkit-filter: hue-rotate(0deg);
+ }
+ to {
+ -webkit-filter: hue-rotate(-360deg);
+ }
+ }
+ </style>
+</head>
+<body>
+ <h1>Welcome to QuteBrowser!</h1>
+</body>
+</html>