tangled
alpha
login
or
join now
eeep.ee
/
website3
1
fork
atom
my website
1
fork
atom
overview
issues
pulls
pipelines
show nix store path for the website on the website
eeep.ee
1 year ago
16fb2420
124ff3a3
+21
-3
3 changed files
expand all
collapse all
unified
split
src
discord.html
index.html
style.css
+1
-1
src/discord.html
reviewed
···
26
26
i have friend requests disabled, so contact me elsewhere first
27
27
</p>
28
28
</body>
29
29
-
</html>
29
29
+
</html>
+19
-1
src/index.html
reviewed
···
15
15
align-items: flex-end;
16
16
min-height: 100vh;
17
17
}
18
18
+
#src {
19
19
+
text-decoration: none;
20
20
+
color: inherit;
21
21
+
opacity: 0.5;
22
22
+
transition: opacity 200ms;
23
23
+
}
24
24
+
#src:is(:hover, :focus-visible) {
25
25
+
opacity: 1;
26
26
+
}
27
27
+
#src code {
28
28
+
white-space: normal;
29
29
+
overflow-wrap: anywhere;
30
30
+
font: inherit;
31
31
+
}
18
32
</style>
19
33
</head>
20
34
<body>
···
37
51
<li><a href="https://matrix.to/#/@chfour:eeep.ee">matrix</a></li>
38
52
<li><a href="discord.html">discord</a></li>
39
53
<li><a href="https://files.eeep.ee/">file dump</a></li>
40
40
-
<li><a href="https://github.com/chfour/website3">website source</a></li>
41
54
</ul>
55
55
+
<p>
56
56
+
<a id="src" href="https://github.com/chfour/website3" aria-label="website source" title="website source">
57
57
+
<code>{{placeholder "http.vars.websitePath"}}</code>
58
58
+
</a>
59
59
+
</p>
42
60
</article>
43
61
</body>
44
62
</html>
+1
-1
src/style.css
reviewed
···
23
23
color: black;
24
24
font-family: 'Inter', sans-serif;
25
25
font-optical-sizing: auto;
26
26
+
margin: 0;
26
27
}
27
28
28
29
article {
29
29
-
/* max-width: 30em; */
30
30
margin: 3rem;
31
31
}
32
32