diff options
| author | Mohammad Reza Karimi <m.r.karimi.j@gmail.com> | 2026-01-04 21:28:36 -0500 |
|---|---|---|
| committer | Mohammad Reza Karimi <m.r.karimi.j@gmail.com> | 2026-01-04 21:28:36 -0500 |
| commit | 06d1242317f7159ccf3014f0a1480e7c56236ebb (patch) | |
| tree | 89863b3287ae2c7cc88cd532220f18c38e8d8657 /qute/dot-config/qutebrowser/startpage.html | |
| parent | 5a41da5881a11ba3fdc3890c342aa3b7eb53e0cf (diff) | |
add all sorts of things
Diffstat (limited to 'qute/dot-config/qutebrowser/startpage.html')
| -rw-r--r-- | qute/dot-config/qutebrowser/startpage.html | 42 |
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> |
