-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (77 loc) · 2.24 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>sktt</title>
<meta name="description" content="rx-pixi-generator powered mazylol(s) 🐿">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: monospace;
}
.overlay {
position: absolute;
background-color: rgba(0,0,0,0.8);
color: #E7DBB2;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: 360px;
padding: 16px;
border-radius: 2px;
border: 1px solid #A3BB2E;
}
hr {
border-color: #A3BB2E;
}
p {
margin: 8px;
}
h1 {
color: #F0A932;
margin: 8px;
}
a{
color: #F0A932;
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
.overlay {
display :none;
}
canvas {
image-rendering: optimizeSpeed; /* Older versions of FF */
image-rendering: -moz-crisp-edges; /* FF 6.0+ */
image-rendering: -webkit-optimize-contrast; /* Safari */
image-rendering: -o-crisp-edges; /* OS X & Windows Opera (12.02+) */
image-rendering: optimize-contrast;
image-rendering: pixelated; /* Awesome future-browsers */
-ms-interpolation-mode: nearest-neighbor; /* IE */
}
</style>
</head>
<body>
<div class="overlay">
<h1>sktt</h1>
<p><i>Johannes Wikner, freelancing software engineer, <a
href="mailto:[email protected]">mail</a>, <a
href="https://github.com/sktt">code</a></i>
<hr />
<p>
I am a software engineer, based in Berlin, Germany. I am interested in
asynchronous and reactive programming, algorithms, data visualisation
and modelling. Most of my work is done with JavaScript.
</p>
</div>
<script>
if (~window.location.href.indexOf('nooverlay')) {
document.querySelector('.overlay').remove();
}
</script>
<script src="main.js"></script>
<noscript>gtfo</noscript>
</body>
</html>