-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (51 loc) · 1.01 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
<html>
<head>
<link rel="shortcut icon" href="#" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<script type="text/javascript" src="hello.js"></script>
</head>
<body>
<div id="main"></div>
<div id="layer">
<a href="https://www.linkedin.com/in/jarkko-vallius/">lnkdn</a>
</div>
</body>
</html>
<style lang="css">
#main {
font-family: monospace;
font-size: 2em;
line-height: 1em;
}
.skeleton {
color: rgb(32 46 60)
}
.shadow {
color: rgb(27, 29, 31)
}
.shadow-2 {
color: rgb(126, 89, 20);
}
body {
background-color: rgb(43 69 73);
display: flex;
align-items: center;
justify-content: center;
overflow-y: hidden;
overflow-x: hidden;
}
#layer {
position: absolute;
}
#layer>a {
font-family: monospace;
font-size: 2em;
line-height: 1em;
text-decoration: underline;
color: rgb(173 171 151);
display: block;
}
#layer>a:hover {
color: rgb(52, 197, 39);
}
</style>