-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (73 loc) · 1.45 KB
/
index.html
File metadata and controls
84 lines (73 loc) · 1.45 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Alter Source</title>
<style>
* {
box-sizing: border-box;
}
html,
body {
height: 100%;
margin: 0;
}
body {
font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
overflow: hidden;
background: #000;
color: #fff;
}
.bg {
position: fixed;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
filter: blur(8px);
transform: scale(2.0);
z-index: -1;
}
.card {
width: min(90%, 720px);
border: 3px solid rgba(255, 255, 255, 0);
border-radius: 16px;
padding: 28px;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.06));
backdrop-filter: blur(4px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
text-align: center;
width: 50%;
height: 70%;
}
.card h1 {
margin: 0 0 8px 0;
font-size: 1.5rem;
}
.card p {
margin: 0;
color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 480px) {
.card {
padding: 18px;
}
.card h1 {
font-size: 1.2rem;
}
}
</style>
</head>
<body>
<img class="bg" src="stuff/bg1.png" alt="Background image">
<div class="card" role="region">
<h1>Alter Source</h1>
<!--TODO: make the page cuz im a lazy ass-->
</div>
</body>
</html>