-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
134 lines (119 loc) · 3.59 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>lol.</title>
<style>
body {
background: linear-gradient(135deg, #0a0a0a 0%, #1e1e1e 100%);
color: #00FF00;
font-family: 'Press Start 2P', cursive;
text-align: center;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
overflow: hidden;
animation: bodyAnimation 2s ease-in-out;
}
h1, h2, h3, p {
text-shadow: 0px 0px 1px rgba(0, 255, 0, 1), 0px 0px 3px rgba(0, 255, 0, 0.8);
font-size: 1.5em;
margin: 20px 0;
animation: float 3s ease-in-out infinite;
transition: transform 0.3s ease;
}
h1 {
font-size: 1.4em;
animation-delay: 0.2s;
}
h2 {
font-size: 1.5em;
animation-delay: 0.4s;
}
p {
font-size: 1em;
line-height: 1.6;
max-width: 80%;
animation-delay: 0.5s;
}
a {
color: #00FF00;
text-decoration: none;
font-size: 1em;
font-weight: bold;
text-shadow: 0px 0px 1px rgba(0, 255, 0, 1), 0px 0px 3px rgba(0, 255, 0, 0.8);
padding: 8px 20px;
background-color: #000;
border-radius: 8px;
transition: all 0.3s ease;
animation: hoverPulse 2s infinite;
margin-top: 20px;
}
a:hover {
color: #FF6347;
background-color: #333;
transform: scale(1.1);
text-shadow: 1px 1px 3px rgba(255, 99, 71, 0.8);
}
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@keyframes float {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-6px);
}
100% {
transform: translateY(0);
}
}
@keyframes bodyAnimation {
0% {
opacity: 0;
transform: translateY(50px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes hoverPulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
@media (max-width: 768px) {
body {
padding: 20px;
}
h1, h2, h3 {
font-size: 1em;
}
p {
font-size: 0.9em;
}
a {
font-size: 1em;
padding: 8px 15px;
}
}
</style>
</head>
<body>
<h2>Where's the website?</h2>
<p>You can check it out here: <a href="https://ulrua.pages.dev">https://ulrua.pages.dev//</a></p>
<h1>If you have access to GitHub from your phone or personal device, you can easily self-host your own server using GitHub Codespaces. Simply follow the guide provided in the repository and use the given link as your own.</h1>
<p>Github repository: <a href="https://github.com/oavla/oav/tree/main">https://github.com/oavla/oav/tree/main/</a></p>
</body>
</html>