-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
197 lines (172 loc) · 4.77 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link href="./src/favicon.ico" rel="icon" type="image/x-icon" />
<title>Welcome!</title>
<style>
body {
background-color: #000;
color: #fffafa;
text-align: center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
"Helvetica Neue", "Helvetica", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
body h1 {
font-style: oblique;
font-weight: bold;
font-size: 3.75rem;
text-align: center;
margin-top: 2%;
}
body h2 {
font-size: 3rem;
}
body h3 {
margin: 20px;
}
body a {
color: #f2f2f2;
}
body a:visited {
color: #f2f2f2;
}
body a:hover {
color: red;
}
#link-list {
list-style-type: none;
width: 200px;
margin: auto;
}
#link-list li:hover {
background: #ff0000 url("./src/favicon.ico") 0 3px no-repeat;
cursor: pointer;
}
#link-list li a:hover {
color: black;
}
.white {
background-color: #000;
height: 75vh;
}
.white > .animation_text {
margin: 30px;
}
.footer {
margin-top: 6rem;
}
#animation {
width: 98vw;
height: 30vh;
background: #fffafa
url("https://media.giphy.com/media/12MhwQm8toOEp2/giphy.gif") repeat-y;
animation: play 8s steps(120) infinite;
display: inline-block;
}
@keyframes play {
0% {
background-position-x: -2000px;
}
50% {
background-position-x: 0px;
}
100% {
background-position-x: 2000px;
}
}
</style>
</head>
<body>
<div class="white">
<h1>I had a real website, but someone stole it from me.</h1>
<div id="animation"></div>
<div class="animation_text">
<h2>It's okay though, I already got someone on the case!</h2>
<h3>
Until I got it back, you can contact me through
<a href="https://www.linkedin.com/in/filipedpsilva/">here</a>.
</h3>
<h4>Other places I might be, instead of working:</h4>
<!-- <div id="link-list"></div> -->
<script>
//#region Links List
const linkList = [
{
href:
"mailto:[email protected]?subject=I know who stole your site Filipe!&body=It was: ",
text: "E-mail",
},
{
href: "https://twitter.com/filipedpsilva_",
text: "Twitter",
},
{
href: "http://www.moshbit.pt/",
text: "Videogame website",
},
{
href: "https://steamcommunity.com/id/kingodfather/",
text: "Steam",
},
{
href: "https://my.playstation.com/profile/KINGodfather",
text: "PlayStation Network",
},
{
href: "https://nin.codes/kingodfather",
text: "Nintendo Friend Code",
},
{
href: "https://www.xbox.com/pt-PT/play/user/KINGodfather",
text: "XBOX",
},
{
href: "https://metalhead.club/@filipedpsilva",
text: "Mastodon",
},
];
//#endregion Links List
//#region Script
document.write(
"<div id='link-list'>" +
linkList
.map(function (linkList) {
return (
"<li>" +
"<a target='_blank' rel='noopener noreferrer' href='" +
linkList.href +
"'>" +
linkList.text +
"</a>" +
"</li>"
);
})
.join("") +
"</div>"
);
//#endregion Script
</script>
</div>
<div class="footer">
<p>
©
<script>
new Date().getFullYear() > 2010 &&
document.write("" + new Date().getFullYear() + " Filipe Silva");
</script>
</p>
<p>fan art © artist unknown</p>
</div>
</div>
</body>
</html>