forked from indieweb/blank-gh-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathretro.html
More file actions
184 lines (171 loc) · 6.26 KB
/
retro.html
File metadata and controls
184 lines (171 loc) · 6.26 KB
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
<!doctype html>
<html lang="en">
<head>
<meta page-url="https://home.joeross.me/index.html" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="omg.lol proofs" content="proven.lol/1ea80f" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="authorization_endpoint" href="https://indieauth.com/auth" />
<link rel="token_endpoint" href="https://tokens.indieauth.com/token" />
<link rel="microsub" href="https://aperture.p3k.io/microsub/865" />
<title>Joe Ross Ⓛ joeross.me</title>
<style>
:root {
--bg: #000022;
--text: #ffffcc;
--accent1: #cc0000;
--accent2: #0000ff;
--accent3: #ffff00;
--box: #222266;
--highlight: #ff0000;
--highlight-text: #ffffcc;
}
body.inverted {
--bg: #ffffdd;
--text: #1a1a1a;
--accent1: #ff6666;
--accent2: #ccccff;
--accent3: #222200;
--box: #eeeeff;
--highlight: #ccccff;
--highlight-text: #222200;
}
body {
background: var(--bg);
color: var(--text);
font-family: "Courier New", monospace;
line-height: 1.6;
padding: 2rem;
}
.toggle-btn {
position: fixed;
top: 10px;
right: 10px;
background: var(--accent3);
color: var(--accent2);
border: 2px solid var(--accent1);
padding: 5px 10px;
cursor: pointer;
z-index: 1000;
}
main {
text-align: center;
background: var(--accent3);
color: var(--highlight-text);
border: 4px solid var(--accent1);
box-shadow: 6px 6px 0 var(--accent2);
padding: 2rem;
max-width: 600px;
margin: auto;
}
h1 {
font-size: 1.8rem;
color: var(--accent1);
text-shadow: 1px 1px var(--accent2);
}
.u-photo {
border-radius: 50%;
border: 5px solid var(--accent2);
width: 150px;
height: 150px;
animation: spin 10s linear infinite;
filter: contrast(2) saturate(3);
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
ul {
list-style: none;
padding: 0;
}
li {
background: var(--box);
border-bottom: 1px dashed var(--accent2);
padding: 0.5rem;
margin: 0.25rem 0;
font-weight: bold;
}
a {
color: var(--accent1);
text-decoration: underline;
}
a:hover {
background: var(--accent1);
color: var(--highlight-text);
padding: 2px 4px;
}
footer {
margin-top: 2rem;
font-size: 0.8rem;
color: var(--text);
background: var(--box);
border: 2px solid var(--accent1);
padding: 1rem;
text-align: center;
}
.hidden-link {
display: none;
}
</style>
</head>
<body class="h-card" rel="author">
<button class="toggle-btn" onclick="toggleTheme()">Toggle Theme</button>
<main>
<img class="u-photo" alt="The face of the legend himself, Joe Ross" src="images/IMG_3859.jpeg" width="150" height="150" />
<h1>👋 Hi, I'm <span class="p-name">Joe Ross</span></h1>
<div class="p-note">
<ul>
<li>🏠 Dad, husband, geek into<br /> tech policy, sci-fi & the indie web</li>
<li>💼 Lawyer focused on civil litigation</li>
<li>🚫Nothing here is legal advice.</li>
</ul>
</div>
<p>🖥️ <a class="u-url" href="https://joeross.me">joeross.me</a></p>
<ul>
<li>✉️ <a class="u-email" href="mailto:hi@joeross.me" rel="me">hi@joeross.me</a></li>
<li>❤️ <a class="u-url" href="https://joeross.lol" rel="me">omg.lol</a></li>
<li>📝 <a class="u-url" href="https://micro.blog/joeross" rel="me">micro.blog</a></li>
<li>🐘 <a class="u-url" rel="me" href="https://mastodon.social/@joeross">mastodon</a></li>
<li>☀️ <a class="u-url" rel="me" href="https://bsky.app/profile/joeross.me">bluesky</a></li>
<li>🐱 <a href="https://joeross.nekoweb.org/">nekoweb</a></li>
<li>🌆 <a href="https://joeross.neocities.org/">neocities</a></li>
</ul>
<a href="https://joeross.micro.blog/" rel="me" class="hidden-link"></a>
<a href="https://github.com/joeross" rel="me" class="hidden-link"></a>
<a href="https://social.lol/@joeross" rel="me" class="hidden-link"></a>
</main>
<footer>
<p class="footer-text">You are here: <span id="current-url"></span></p>
<script>document.getElementById('current-url').textContent = window.location.href;</script>
<p class="footer-text">Ⓛ A <a href="https://joeross.me" class="dotted-link">Joe Ross</a> production</p>
<p class="footer-text">
<a href="https://themarkup.org/blacklight?location=us-ca&device=desktop&force=true&url=https://joeross.neocities.org/">No Tracking</a>
</p>
<!-- Identity verification links -->
<a href="https://joeross.me/" class="h-card hidden-link" rel="me"></a>
<a rel="me" href="https://joeross.neocities.org/" class="hidden-link"></a>
<a rel="me" href="https://joeross.nekoweb.org/" class="hidden-link"></a>
<a rel="me" href="https://en.gravatar.com/joeross1" class="hidden-link"></a>
<a rel="me" href="https://libre.fm/user/joerossFM" class="hidden-link"></a>
<a rel="me" href="https://libre.fm/user/joerossFM1" class="hidden-link"></a>
<a rel="me" href="https://github.com/joeross" class="hidden-link"></a>
<a rel="me" href="https://joeross.micro.blog" class="hidden-link"></a>
<a rel="me" href="https://joeross.omg.lol" class="hidden-link"></a>
<a rel="me" href="https://joeross.proven.lol" class="hidden-link"></a>
<a rel="me" href="https://social.lol/@joeross" class="hidden-link"></a>
<a rel="me" href="https://status.lol/joeross" class="hidden-link"></a>
<a rel="me" href="https://www.threads.net/@joeross.me" class="hidden-link"></a>
<a rel="me" href="https://listenbrainz.org/user/joeross/" class="hidden-link"></a>
<a rel="me" href="https://musicbrainz.org/user/joeross" class="hidden-link"></a>
<a rel="me" href="https://mastodon.social/@joeross" class="hidden-link"></a>
<a rel="me" href="https://bsky.app/profile/joeross.me" class="hidden-link"></a>
</footer>
<script>
function toggleTheme() {
document.body.classList.toggle('inverted');
}
</script>
</body>
</html>