-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtemp.html
More file actions
102 lines (93 loc) · 2.34 KB
/
temp.html
File metadata and controls
102 lines (93 loc) · 2.34 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>AlphaDroid | Coming Soon</title>
<link rel="shortcut icon" href="images/fav.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Material+Symbols+Rounded" rel="stylesheet" />
<style>
:root {
--primary: #6750A4;
--on-primary: #413e3e;
--background: #101735;
--on-background: #1D1B20;
--elevation: 0 6px 12px rgba(0,0,0,0.1);
}
body {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
color: var(--on-background);
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
background-image: url('images/milk.jpg');
background-size: cover;
background-position: center;
position: relative;
overflow: hidden;
}
.overlay {
position: absolute;
inset: 0;
background: rgba(48, 47, 47, 0.8);
backdrop-filter: blur(10px);
z-index: 1;
}
.content {
position: relative;
z-index: 2;
max-width: 600px;
padding: 40px;
border-radius: 24px;
background: rgb(55, 50, 50);
box-shadow: var(--elevation);
color: aliceblue ;
}
h1 {
font-size: 3rem;
margin-bottom: 20px;
color: var(--primary);
}
p {
font-size: 1.25rem;
margin-bottom: 30px;
}
.material-symbols-rounded {
font-size: 48px;
color: var(--primary);
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-8px);
}
}
@media (max-width: 600px) {
h1 {
font-size: 2rem;
}
p {
font-size: 1rem;
}
}
</style>
</head>
<body>
<div class="overlay"></div>
<div class="content">
<span class="material-symbols-rounded">construction</span>
<h1>We're Building Something Awesome!</h1>
<p>This website is currently under construction.<br>Please check back soon.</p>
<a href="index.html" class="download-button">
<span class="material-symbols-rounded">arrow_back</span>
</a>
</div>
</body>
</html>