-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
203 lines (182 loc) · 4.86 KB
/
index.html
File metadata and controls
203 lines (182 loc) · 4.86 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<!DOCTYPE html>
<html lang="el">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>AlefasNet</title>
<style>
:root {
--bg: #121212;
--text: #e0e0e0;
--primary: #ffffff;
--glass: rgba(255, 255, 255, 0.05);
--border: rgba(255, 255, 255, 0.1);
}
body.light {
--bg: #f4f4f4;
--text: #1a1a1a;
--primary: #000000;
--glass: rgba(255, 255, 255, 0.6);
--border: rgba(0, 0, 0, 0.1);
}
body.dark-purple {
--bg: #2b003e;
--text: #d1b2e3;
--primary: #9b59b6;
--glass: rgba(0, 0, 0, 0.3);
--border: rgba(255, 255, 255, 0.2);
}
body.dark-green {
--bg: #0b1d0b;
--text: #b8ffce;
--primary: #00ff99;
--glass: rgba(0, 64, 0, 0.3);
--border: rgba(0, 128, 64, 0.2);
}
body.light-blue {
--bg: #d7f0ff;
--text: #003344;
--primary: #1e90ff;
--glass: rgba(255, 255, 255, 0.5);
--border: rgba(0, 0, 0, 0.1);
}
body.light-green {
--bg: #ecfff0;
--text: #003322;
--primary: #00cc66;
--glass: rgba(255, 255, 255, 0.5);
--border: rgba(0, 0, 0, 0.1);
}
body.orange {
--bg: #332100;
--text: #ffe0b2;
--primary: #ff9800;
--glass: rgba(102, 51, 0, 0.3);
--border: rgba(255, 153, 0, 0.2);
}
body.pink {
--bg: #2d0c1d;
--text: #ffc0cb;
--primary: #ff69b4;
--glass: rgba(64, 0, 32, 0.3);
--border: rgba(255, 105, 180, 0.2);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: var(--bg);
color: var(--text);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
transition: background 0.4s, color 0.4s;
}
.container {
background: var(--glass);
border: 1px solid var(--border);
border-radius: 20px;
backdrop-filter: blur(12px);
padding: 40px;
max-width: 420px;
width: 100%;
text-align: center;
box-shadow: 0 0 20px var(--primary);
animation: fadeIn 1s ease forwards;
}
@keyframes fadeIn {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
h1 {
font-size: 2.4em;
color: var(--primary);
margin-bottom: 10px;
}
h4 {
font-size: 0.95em;
color: #888;
margin-bottom: 30px;
}
.btn {
display: block;
width: 100%;
padding: 12px 20px;
margin: 10px 0;
font-size: 1em;
color: var(--primary);
background: transparent;
border: 2px solid var(--primary);
border-radius: 10px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
text-align: left;
}
.btn:hover {
background-color: var(--primary);
color: var(--bg);
box-shadow: 0 0 10px var(--primary);
transform: scale(1.03);
}
select {
margin-top: 10px;
padding: 8px;
border-radius: 10px;
font-size: 1em;
border: 2px solid var(--primary);
background: var(--glass);
color: var(--text);
backdrop-filter: blur(8px);
}
footer {
margin-top: 20px;
font-size: 0.85em;
color: #777;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h1>AlefasNet Portal</h1>
<h4>This is useless</h4>
<a class="btn" href="http://hub.alefasnet.xyz:81" target="_blank">🌐 CasaOS</a>
<a class="btn" href="https://panel.alefasnet.xyz" target="_blank">🎮 Pterodactyl Panel</a>
<a class="btn" href="https://donut.alefasnet.xyz/" target="_blank">🍩 Donut</a>
<select onchange="changeTheme(this.value)">
<option value="dark">Dark</option>
<option value="light">Light</option>
<option value="dark-purple">Dark Purple</option>
<option value="dark-green">Dark Green</option>
<option value="light-blue">Light Blue</option>
<option value="light-green">Light Green</option>
<option value="orange">Orange</option>
<option value="pink">Pink</option>
</select>
<footer>© 2025 AlefasNet — All rights reserved</footer>
</div>
<script>
function changeTheme(theme) {
document.body.className = theme;
localStorage.setItem("theme", theme);
}
window.onload = () => {
const savedTheme = localStorage.getItem("theme") || "dark";
changeTheme(savedTheme);
}
</script>
</body>
</html>