blob: bf53c0d68380876f8e85f4fbac199c399e613bf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<!DOCTYPE html>
<html>
<head>
<title>about:blank</title>
<style>
body {
background-color: #181818; /* 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>
|