-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (76 loc) · 3.05 KB
/
index.html
File metadata and controls
76 lines (76 loc) · 3.05 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Token Ring</title>
</head>
<body>
<h1>The Token Ring</h1>
<ol>
<li id="monoxane">
<a href="https://monoxane.io">monoxane</a>
</li>
<li id="voltaicforge">
<a href="https://voltaicforge.com">voltaicforge</a>
</li>
<li id="jjgadgets">
<a href="https://jjgadgets.tech">JJGadgets</a>
</li>
<li id="rwaltr">
<a href="https://rwalt.pro">Rwaltr</a>
</li>
<li id="tyzbit">
<a href="https://tyzbit.blog">tyzbit</a>
</li>
<li id="sascha">
<a href="https://sascha.sh">sascha</a>
</li>
<li id="crutonjohn">
<a href="https://baremetalblog.com">crutonjohn</a>
</li>
<li id="foxhollow">
<a href="https://www.foxhollow.cc">foxhollow</a>
</li>
<li id="alliejp">
<a href="https://alliejp.tv">alliejp</a>
</li>
</ol>
<footer>
<p class="readme">
This webring is an attempt to connect creatives and engineers across the Broadcast and IT industries, it aims to be a community that inspires and teaches and as such emphasizes <b>hand made sites, wikis, and portfolios</b>
</p>
<p>
To add yourself to the ring, submit a <a href="https://github.com/monoxane/tokenring#join-the-webring" target="_blank">pull request</a>.<br />
Found a broken link, please <a href="https://github.com/monoxane/tokenring/issues/new" target="_blank">report it</a>.<br /><br />
</p>
<img id="icon" src="icon.dark.svg" alt="icon"/>
</footer>
<style>
:root { --primary: #eeeeee; --secondary: #222222; }
body { padding: 0; margin: 0 0 0 0; background-color: var(--primary); color: var(--secondary); font-family: monospace; max-width: 900px; }
body a { color: var(--secondary); text-decoration: none; }
body a:hover { background-color: var(--secondary); color: var(--primary); }
body a:before { content: '{'; }
body a:after { content: '}'; }
body h1 {margin: 30px;}
body > ol { margin: 30px; padding: 0px 30px 30px; column-count: 3; display: block; border-bottom: 2px solid var(--secondary); }
body > ol > li { padding-right: 30px; }
body > ol > li img { display: none; margin:5px; max-width: 88px }
body > ol > li a:visited:before, body > ol > li a:visited:after { color: var(--primary); }
body > footer { margin: 30px; }
body > footer > p { max-width: 600px; }
body > footer > img { display: inline-block; width: 100px; margin-bottom: -5px; margin-bottom: 30px; }
body:target > footer > p > span.hide, html:target footer > p > span.hide { display: inline; }
body > ol:target > li > img { display:block; }
body > ol > li:target a { color: var(--primary); }
body > ol > li:target { background: var(--secondary); }
@media screen and (max-width: 800px) { body > ol { column-count: 2; } }
@media screen and (max-width: 600px) { body > ol { column-count: 1; } }
@media (prefers-color-scheme: dark) {
:root { --primary: #222222; --secondary: #eeeeee; }
/* #icon { filter: invert(100%); } */
}
</style>
</body>
</html>