-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (48 loc) · 1.51 KB
/
index.html
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
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>⭐</text></svg>">
<title>freakstar</title>
<style>
:root {
--background-light: #F5F5F5;
--background-dark: #111111;
--text-color-light: #111111;
--text-color-dark: #F5F5F5;
}
@media (prefers-color-scheme: light) {
body {
background: linear-gradient(to bottom right, #87CEEB, #ADD8E6); /* light blue gradient background */
color: var(--text-color-light);
}
}
@media (prefers-color-scheme: dark) {
body {
background: linear-gradient(to bottom right, #111111, #333333); /* dark gradient background */
color: var(--text-color-dark);
}
}
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: Arial, sans-serif;
}
.textbox {
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="textbox">
<h1>freakstar</h1>
</div>
</body>
</html>