-
Notifications
You must be signed in to change notification settings - Fork 0
/
alphastar.html
121 lines (110 loc) · 3.24 KB
/
alphastar.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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!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="logo.png" type="image/x-icon">
<link rel="shortcut icon" href="logo.png" type="image/x-icon">
<title>AlphaStar</title>
<style>
/* Avoid white flash on load */
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background-color: #1c1c1c; /* Matte black background */
font-family: 'Helvetica Neue', Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
opacity: 1;
transition: background-color 1s ease;
}
/* Fade-in effect from bottom */
@keyframes fadeInFromBottom {
0% {
opacity: 0;
transform: translateY(30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.container {
text-align: center;
color: white;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
animation: fadeInFromBottom 1.5s ease-out forwards;
}
.logo {
max-width: 150px; /* Smaller logo size */
margin-bottom: 30px;
}
.email-signup {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 30px;
}
.email-signup input[type="email"] {
padding: 15px 20px;
font-size: 18px;
border: 2px solid #555;
border-radius: 5px;
width: 100%;
max-width: 400px;
background-color: #222;
color: white;
outline: none;
transition: border-color 0.3s ease;
margin-bottom: 10px;
}
.email-signup input[type="email"]::placeholder {
color: #888;
}
.email-signup input[type="email"]:focus {
border-color: #ff6500;
}
.email-signup button {
padding: 15px 25px;
font-size: 18px;
background-color: #ff6500;
color: white;
border: 2px solid #ff6500;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease, border-color 0.3s ease;
width: 100%;
max-width: 400px;
}
.email-signup button:hover {
background-color: #e55d00;
border-color: #e55d00;
}
/* Mobile styles */
@media (max-width: 600px) {
.logo {
max-width: 100px; /* Smaller logo for mobile */
margin-bottom: 20px;
}
.email-signup input[type="email"],
.email-signup button {
font-size: 16px;
padding: 12px 20px;
max-width: 100%;
}
}
</style>
</head>
<body>
<div class="container">
<img src="logo.png" alt="Logo" class="logo">
</div>
</body>
</html>