-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
74 lines (66 loc) · 1.75 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
<!DOCTYPE html>
<html>
<head>
<title>Jim's Diversified Holdings</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100vh;
}
html {
background-image: linear-gradient(to bottom, #59d 0%, #2673bf 100%);
}
body {
background-image: linear-gradient(rgba(255,255,255,.3) 2px, transparent 2px),
linear-gradient(90deg, rgba(255,255,255,.3) 2px, transparent 2px),
linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
background-size:100px 100px, 100px 100px, 20px 20px, 20px 20px;
background-position:-2px -2px, -2px -2px, -1px -1px, -1px -1px
}
h1, h2 {
text-align: center;
font-family: noto sans mono, mono;
letter-spacing: 3px;
text-shadow: 2px 2px 2px rgba(100, 100, 100, 0.5);
font-variant-ligatures: none;
padding: 20px;
}
h1 {
font-size: 24pt;
font-style: italic;
color: white;
}
body {
padding-top: 100px;
}
div#links {
padding-top: 60px;
font-family: noto sans mono, mono;
text-align: center;
}
a {
color: orange;
font-weight: bold;
}
a:visited {
color: orange;
}
a:hover {
color: red;
}
</style>
</head>
<body>
<h1>
Jim's Diversified Holdings
</h1>
<div id="links">
⛵ | <a href="http://blog.jimmo.id.au/">Blog</a> | <a href="https://github.com/jimmo">GitHub</a> | <a rel="me" href="https://mastodon.social/@jimmo">Mastodon</a> | <a href="https://twitter.com/jim_mussared">Twitter</a> | 🌴
</div>
</body>
</html>