tangled
alpha
login
or
join now
zzstoatzz.io
/
zat
1
fork
atom
atproto tools in zig
zat.dev
sdk
atproto
zig
1
fork
atom
overview
issues
pulls
pipelines
docs: add wisp footer
zzstoatzz.io
2 months ago
3422521a
276880d3
2/2
ci.yml
success
5s
deploy-docs.yml
success
5s
+39
-4
2 changed files
expand all
collapse all
unified
split
site
index.html
style.css
+15
-3
site/index.html
···
28
28
</nav>
29
29
30
30
<main class="main">
31
31
-
<article id="content" class="content">
32
32
-
<noscript>This docs site requires JavaScript.</noscript>
33
33
-
</article>
31
31
+
<div class="main-inner">
32
32
+
<article id="content" class="content">
33
33
+
<noscript>This docs site requires JavaScript.</noscript>
34
34
+
</article>
35
35
+
<footer class="footer">
36
36
+
<a
37
37
+
class="footer-link"
38
38
+
href="https://wisp.place"
39
39
+
target="_blank"
40
40
+
rel="noopener noreferrer"
41
41
+
>
42
42
+
powered by wisp.place
43
43
+
</a>
44
44
+
</footer>
45
45
+
</div>
34
46
</main>
35
47
</div>
36
48
</div>
+24
-1
site/style.css
···
149
149
justify-content: center;
150
150
}
151
151
152
152
+
.main-inner {
153
153
+
width: min(var(--max), 100%);
154
154
+
}
155
155
+
152
156
.content {
153
153
-
width: min(var(--max), 100%);
154
157
border: 1px solid var(--border);
155
158
border-radius: var(--radius);
156
159
background: var(--panel);
157
160
box-shadow: 0 12px 40px var(--shadow);
158
161
padding: 24px;
162
162
+
}
163
163
+
164
164
+
.footer {
165
165
+
display: flex;
166
166
+
justify-content: flex-end;
167
167
+
padding: 10px 4px 0;
168
168
+
}
169
169
+
170
170
+
.footer-link {
171
171
+
font-size: 13px;
172
172
+
color: var(--muted);
173
173
+
padding: 6px 10px;
174
174
+
border-radius: 10px;
175
175
+
border: 1px solid transparent;
176
176
+
}
177
177
+
.footer-link:hover {
178
178
+
color: var(--text);
179
179
+
background: color-mix(in srgb, var(--codebg) 70%, transparent);
180
180
+
border-color: var(--border);
181
181
+
text-decoration: none;
159
182
}
160
183
161
184
.content h1,